google_compute_autoscalers resource
Syntax
A google_compute_autoscalers is used to test a Google Autoscaler resource
Beta Resource
This resource has beta fields available. To retrieve these fields, include beta: true in the constructor for the resource.
Examples
autoscalers = google_compute_autoscalers(project: 'chef-gcp-inspec', zone: 'zone')
describe.one do
autoscalers.autoscaling_policies.each do |autoscaling_policy|
describe autoscaling_policy do
its('max_num_replicas') { should eq '5' }
its('min_num_replicas') { should eq '1' }
its('cool_down_period_sec') { should eq '60' }
its('cpu_utilization.utilization_target') { should eq '0.5' }
end
end
end
Properties
Properties that can be accessed from the google_compute_autoscalers resource:
See google_compute_autoscaler for more detailed information.
ids: an array ofgoogle_compute_autoscaleridcreation_timestamps: an array ofgoogle_compute_autoscalercreation_timestampnames: an array ofgoogle_compute_autoscalernamedescriptions: an array ofgoogle_compute_autoscalerdescriptionautoscaling_policies: an array ofgoogle_compute_autoscalerautoscaling_policytargets: an array ofgoogle_compute_autoscalertargetzones: an array ofgoogle_compute_autoscalerzone
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 Compute Engine API is enabled for the current project.