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 googlecomputeautoscaler.md for more detailed information
* ids
: an array of google_compute_autoscaler
id
* creation_timestamps
: an array of google_compute_autoscaler
creationtimestamp
* names
: an array of `googlecomputeautoscalername
*
descriptions: an array of
googlecomputeautoscalerdescription
*
autoscalingpolicies: an array of
googlecomputeautoscalerautoscaling_policy
*
targets: an array of
googlecomputeautoscalertarget
*
zones: an array of
googlecomputeautoscaler` 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 Compute Engine API is enabled for the current project.