title | platform |
---|---|
About the google_compute_instance_groups Resource |
gcp |
Use the google_compute_instance_groups
InSpec audit resource to test properties of all, or a filtered group of, GCP compute instance groups for a project in a particular zone.
A google_compute_instance_groups
resource block collects GCP instance groups by project and zone, then tests that group.
describe google_compute_instance_groups(project: 'chef-inspec-gcp') do
it { should exist }
end
Use this InSpec resource to enumerate IDs then test in-depth using google_compute_instance_group
.
google_compute_instance_groups(project: 'chef-inspec-gcp').instance_group_names.each do |instance_group_name|
describe google_compute_instance_group(project: 'chef-inspec-gcp', instance_group: instance_group_name) do
it { should exist }
end
end
The following examples show how to use this InSpec audit resource.
describe google_compute_instance_groups(project: 'chef-inspec-gcp') do
its('count') { should be <= 100}
end
describe google_compute_instance_groups(project: 'chef-inspec-gcp', zone: 'europe-west2-a') do
its('instance_group_names') { should include "my-instance-group-name" }
end
google_compute_instance_groups(project: 'chef-inspec-gcp', zone: 'europe-west2-a').where(instance_group_name: /^mig/).instance_group_names.each do |instance_group_name|
describe google_compute_instance_group(project: 'chef-inspec-gcp', zone: 'europe-west2-a', name: instance_group_name) do
it { should exist }
its('size') { should be > 0 }
end
end
This resource supports the following filter criteria: instance_group_id
and instance_group_name
. Any of these may be used with where
, as a block or as a method.
instance_group_ids
- an array of google_compute_instance_group identifier integersinstance_group_names
- an array of google_compute_instance_group name strings
Ensure the Compute Engine API is enabled for the project where the resource is located.