title | platform |
---|---|
About the google_storage_bucket_acl Resource |
gcp |
Use the google_storage_bucket_acl
InSpec audit resource to test properties of a single GCP storage bucket ACL. The 'entity' property below is as described in the Google documentation here.
A google_storage_bucket_acl
resource block declares the tests for a single GCP storage bucket ACL by bucket name and entity.
describe google_storage_bucket_acl(bucket: 'bucket-buvsjjcndqz', entity: '[email protected]') do
it { should exist }
end
The following examples show how to use this InSpec audit resource.
describe google_storage_bucket_acl(bucket: 'bucket-buvsjjcndqz', entity: '[email protected]') do
it { should exist }
end
describe google_storage_bucket_acl(bucket: 'bucket-buvsjjcndqz', entity: '[email protected]') do
its('role') { should eq 'OWNER' }
end
bucket
,email
,entity
,etag
,id
,kind
,role
Ensure the Google Cloud Storage API is enabled.