Skip to content

Latest commit

 

History

History
49 lines (29 loc) · 1.5 KB

google_storage_bucket_acl.md

File metadata and controls

49 lines (29 loc) · 1.5 KB
title platform
About the google_storage_bucket_acl Resource
gcp

google_storage_bucket_acl

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.


Syntax

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: 'user-object-viewer@spaterson-project.iam.gserviceaccount.com') do
  it { should exist }
end

Examples

The following examples show how to use this InSpec audit resource.

Test that a GCP storage bucket ACL exists

 describe google_storage_bucket_acl(bucket: 'bucket-buvsjjcndqz',  entity: 'user-object-viewer@spaterson-project.iam.gserviceaccount.com') do
  it { should exist }
end

Test that a GCP storage bucket ACL has the expected role (READER, WRITER or OWNER)

describe google_storage_bucket_acl(bucket: 'bucket-buvsjjcndqz',  entity: 'user-object-viewer@spaterson-project.iam.gserviceaccount.com') do
  its('role') { should eq 'OWNER' }
end

Properties

  • bucket, email, entity, etag, id, kind, role

GCP Permissions

Ensure the Google Cloud Storage API is enabled.