title | platform |
---|---|
About the google_compute_autoscalers resource |
gcp |
A google_compute_autoscalers
is used to test a Google Autoscaler resource
This resource has beta fields available. To retrieve these fields, include beta: true
in the constructor for the resource
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 that can be accessed from the google_compute_autoscalers
resource:
See google_compute_autoscaler.md for more detailed information
ids
: an array ofgoogle_compute_autoscaler
idcreation_timestamps
: an array ofgoogle_compute_autoscaler
creation_timestampnames
: an array ofgoogle_compute_autoscaler
namedescriptions
: an array ofgoogle_compute_autoscaler
descriptionautoscaling_policies
: an array ofgoogle_compute_autoscaler
autoscaling_policytargets
: an array ofgoogle_compute_autoscaler
targetzones
: an array ofgoogle_compute_autoscaler
zone
This resource supports all of the above properties as filter criteria, which can be used
with where
as a block or a method.
Ensure the Compute Engine API is enabled for the current project.