google_dns_resource_record_sets resource
Syntax
A google_dns_resource_record_sets is used to test a Google ResourceRecordSet resource
Beta Resource
This resource has beta fields available. To retrieve these fields, include beta: true in the constructor for the resource.
Examples
describe google_dns_resource_record_sets(project: 'chef-gcp-inspec', name: 'backend.my.domain.com.', managed_zone: 'inspec-gcp-managed-zone') do
its('count') { should eq 3 }
its('types') { should include 'A' }
its('ttls') { should include '300' }
its('targets.flatten') { should include '8.8.8.8' }
its('targets.flatten') { should include '8.8.4.4' }
end
Properties
Properties that can be accessed from the google_dns_resource_record_sets resource:
See google_dns_resource_record_set for more detailed information.
names: an array ofgoogle_dns_resource_record_setnametypes: an array ofgoogle_dns_resource_record_settypettls: an array ofgoogle_dns_resource_record_setttltargets: an array ofgoogle_dns_resource_record_settargetmanaged_zones: an array ofgoogle_dns_resource_record_setmanaged_zone
Filter criteria
This resource supports all of the above properties as filter criteria, which can be used
with where as a block or a method.
GCP permissions
Ensure the Google Cloud DNS API is enabled for the current project.