aws_sdb_domains resource
Use the aws_sdb_domains
InSpec audit resource to test multiple SimpleDB domain names.
Syntax
Ensure that a domain exists.
describe aws_sdb_domains do
it { should exist }
end
For additional information, see the AWS documentation on AWS SDB Domains..
Parameters
This resource does not require any parameters.
Properties
domain_names
- A list of domain names that match the expression.
Field:
domain_names
Examples
Ensure a domain name is available:
describe aws_sdb_domains do
its('domain_names') { should include 'DOMAIN_NAME')' }
end
Matchers
For a full list of available matchers, see our Universal Matchers page.The controls will pass if the list
method returns at least one result.
exist
Use should
to test that the entity exists.
describe aws_sdb_domains do
it { should exist }
end
Use should_not
to test the entity does not exist.
describe aws_sdb_domains do
it { should_not exist }
end
AWS Permissions
Your AWS principal will need the SimpleDB:Client:ListDomainsResult
action with Effect
set to Allow
.