google_project_alert_policies resource
Syntax
A google_project_alert_policies is used to test a Google AlertPolicy resource
Examples
describe google_project_alert_policies(project: 'chef-gcp-inspec') do
  it { should exist }
  its('policy_display_names') { should include 'Display'}
  its('combiners') { should include 'OR'}
end
Test that there are no more than a specified number of project alert policies available for the project
describe google_project_alert_policies(project: 'chef-inspec-gcp') do
  its('count') { should be <= 100}
end
Test that an expected policy name is available for the project
describe google_project_alert_policies(project: 'chef-inspec-gcp') do
  its('policy_names') { should include 'projects/spaterson-project/alertPolicies/9271751234503117449' }
end
Test whether any expected policy display name is available for the project
describe google_project_alert_policies(project: 'chef-inspec-gcp') do
  its('policy_display_names') { should_not include 'banned policy' }
end
Ensure no existing policies are inactive
describe google_project_alert_policies(project: 'chef-inspec-gcp') do
  its('policy_enabled_states') { should_not include false }
end
Properties
Properties that can be accessed from the google_project_alert_policies resource:
See the google_project_alert_policy resource for more information.
- policy_names
- an array of google_project_alert_policyname
- policy_display_names
- an array of google_project_alert_policydisplay_name
- combiners
- an array of google_project_alert_policycombiner
- creation_records
- an array of google_project_alert_policycreation_record
- policy_enabled_states
- an array of google_project_alert_policyenabled
- conditions
- an array of google_project_alert_policyconditions
- notification_channels
- an array of google_project_alert_policynotification_channels
- user_labels
- an array of google_project_alert_policyuser_labels
- documentations
- an array of google_project_alert_policydocumentation
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 Stackdriver Monitoring 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_project_alert_policies/