Skip to content

Instantly share code, notes, and snippets.

@stephenlauck
Last active July 30, 2020 23:29
Show Gist options
  • Save stephenlauck/af10258b3b40cc986f5c57a7b956a976 to your computer and use it in GitHub Desktop.
Save stephenlauck/af10258b3b40cc986f5c57a7b956a976 to your computer and use it in GitHub Desktop.

Policy (outcome / intent)

"The directory /etc/ssh should be created."

chef

directory '/etc/ssh' do
  action :create
end

inspec

control 'basic-1' do
  impact 1.0
  title '/etc/ssh should be a directory'
  desc '
    In order for OpenSSH to function correctly, its
    configuration path must be a folder.
  '
  describe file('/etc/ssh') do
    it { should be_directory }
  end
end

bourdain

{
  "data": {
    "resources": [
      {
        "id": "ckcnr0o4y0hjf0704l00viyus",
        "identifier": "/etc/ssh",
        "attributes": [
          {
            "key": "create",
            "repair": {
              "id": "ckcnr0ogd0hji07049vgtd2ht",
              "command": "mkdir /etc/ssh",
              "state": null
            },
            "id": "ckcnr0ocm0hjh0704kjmy582q",
            "check": {
              "id": "ckcnr0okd0hjj0704nib78m92",
              "command": "[ -d /etc/ssh ] && echo true",
              "state": null
            },
            "value": "true"
          }
        ]
      }
    ]
  }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment