inspec/docs/resources/etc_hosts.md.erb
hannah-radish 9cfc86d2ab Resource documentation update (#2207)
Light formatting changes, change order of example and matchers, slight
color changes

Signed-off-by: hannah-radish <hmaddy@chef.io>
2017-10-03 17:35:10 -04:00

68 lines
2 KiB
Text

---
title: About the etc_hosts Resource
---
# etc_hosts
Use the `etc_hosts` InSpec audit resource to test rules set to match IP addresses with hostnames.
## Syntax
An etc/hosts rule specifies an IP address and what its hostname is along with optional aliases it can have.
<br>
## Syntax
Use the where clause to match a property to one or more rules in the hosts file.
describe etc_hosts.where { ip_address == 'value' } do
its('primary_name') { should cmp 'hostname' }
its('all_host_names') { should cmp 'list' }
end
Use the optional constructor parameter to give an alternative path to hosts file
describe etc_hosts('path/to/hosts').where { ip_address == 'value' } do
its('primary_name') { should cmp 'hostname' }
its('all_host_names') { should cmp 'list' }
end
where
* `ip_address` is the ip address of the hostname in either ipv4 or ipv6 format.
* `primary_name` is the name associated with the ip address.
* `all_host_names` is a list including the primary_name as the first entry followed by any aliase names the host has.
<br>
## Supported Properties
'ip_address', 'primary_name', 'all_host_names'
<br>
## Property Examples and Return Types
### ip_address
`ip_address` returns a string array of ip addresses specified in the etc/hosts file.
describe etc_hosts.where { primary_name == 'localhost' } do
its('ip_address') { should cmp '127.0.1.154' }
end
### primary_name
`primary_name` returns a string array of primary_names specified in the etc/hosts file.
describe etc_hosts.where { ip_address == '::1' } do
its('primary_name') { should cmp 'localhost' }
end
### all_host_names
`all_host_names` returns a two dimensional string array where each entry has the primary_name first followed by any aliases.
describe etc_hosts.where { ip_address == '127.0.1.154' } do
its('all_host_names') { should eq [['localhost', 'localhost.localdomain', 'localhost4', 'localhost4.localdomain4'], ['localhost', 'localhost.localdomain', 'localhost6', 'localhost6.localdomain6']] }
end