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 the google_compute_autoscaler resource for more information.
idsgoogle_compute_autoscaler idcreation_timestampsgoogle_compute_autoscaler creation_timestampnamesgoogle_compute_autoscaler namedescriptionsgoogle_compute_autoscaler descriptionautoscaling_policiesgoogle_compute_autoscaler autoscaling_policytargetsgoogle_compute_autoscaler targetzonesgoogle_compute_autoscaler zoneThis 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.
© Chef Software, Inc.
Licensed under the Creative Commons Attribution 3.0 Unported License.
The Chef™ Mark and Chef Logo are either registered trademarks/service marks or trademarks/servicemarks of Chef, in the United States and other countries and are used with Chef Inc's permission.
We are not affiliated with, endorsed or sponsored by Chef Inc.
https://docs.chef.io/inspec/resources/google_compute_autoscalers/