google_iam_service_accounts resource

Syntax

A google_iam_service_accounts is used to test a Google ServiceAccount resource

Examples

describe google_iam_service_accounts(project: 'chef-gcp-inspec', name: "[email protected]") do
  its('service_account_emails') { should include "[email protected]" }
  its('count') { should be <= 1000 }
end

Properties

Properties that can be accessed from the google_iam_service_accounts resource:

See the google_iam_service_account resource for more information.

service_account_names
an array of google_iam_service_account name
project_ids
an array of google_iam_service_account project_id
service_account_ids
an array of google_iam_service_account unique_id
service_account_emails
an array of google_iam_service_account email
service_account_display_names
an array of google_iam_service_account display_name
oauth2_client_ids
an array of google_iam_service_account oauth2_client_id

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 Identity and Access Management (IAM) 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_iam_service_accounts/