1. Packages
  2. Google Cloud (GCP) Classic
  3. API Docs
  4. storage
  5. BucketACL
Google Cloud v8.14.0 published on Wednesday, Jan 15, 2025 by Pulumi

gcp.storage.BucketACL

Explore with Pulumi AI

Authoritatively manages a bucket’s ACLs in Google cloud storage service (GCS). For more information see the official documentation and API.

Bucket ACLs can be managed non authoritatively using the storage_bucket_access_control resource. Do not use these two resources in conjunction to manage the same bucket.

Permissions can be granted either by ACLs or Cloud IAM policies. In general, permissions granted by Cloud IAM policies do not appear in ACLs, and permissions granted by ACLs do not appear in Cloud IAM policies. The only exception is for ACLs applied directly on a bucket and certain bucket-level Cloud IAM policies, as described in Cloud IAM relation to ACLs.

NOTE This resource will not remove the project-owners-<project_id> entity from the OWNER role.

Example Usage

Example creating an ACL on a bucket with one owner, and one reader.

import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";

const image_store = new gcp.storage.Bucket("image-store", {
    name: "image-store-bucket",
    location: "EU",
});
const image_store_acl = new gcp.storage.BucketACL("image-store-acl", {
    bucket: image_store.name,
    roleEntities: [
        "OWNER:user-my.email@gmail.com",
        "READER:group-mygroup",
    ],
});
Copy
import pulumi
import pulumi_gcp as gcp

image_store = gcp.storage.Bucket("image-store",
    name="image-store-bucket",
    location="EU")
image_store_acl = gcp.storage.BucketACL("image-store-acl",
    bucket=image_store.name,
    role_entities=[
        "OWNER:user-my.email@gmail.com",
        "READER:group-mygroup",
    ])
Copy
package main

import (
	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/storage"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := storage.NewBucket(ctx, "image-store", &storage.BucketArgs{
			Name:     pulumi.String("image-store-bucket"),
			Location: pulumi.String("EU"),
		})
		if err != nil {
			return err
		}
		_, err = storage.NewBucketACL(ctx, "image-store-acl", &storage.BucketACLArgs{
			Bucket: image_store.Name,
			RoleEntities: pulumi.StringArray{
				pulumi.String("OWNER:user-my.email@gmail.com"),
				pulumi.String("READER:group-mygroup"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;

return await Deployment.RunAsync(() => 
{
    var image_store = new Gcp.Storage.Bucket("image-store", new()
    {
        Name = "image-store-bucket",
        Location = "EU",
    });

    var image_store_acl = new Gcp.Storage.BucketACL("image-store-acl", new()
    {
        Bucket = image_store.Name,
        RoleEntities = new[]
        {
            "OWNER:user-my.email@gmail.com",
            "READER:group-mygroup",
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.storage.Bucket;
import com.pulumi.gcp.storage.BucketArgs;
import com.pulumi.gcp.storage.BucketACL;
import com.pulumi.gcp.storage.BucketACLArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var image_store = new Bucket("image-store", BucketArgs.builder()
            .name("image-store-bucket")
            .location("EU")
            .build());

        var image_store_acl = new BucketACL("image-store-acl", BucketACLArgs.builder()
            .bucket(image_store.name())
            .roleEntities(            
                "OWNER:user-my.email@gmail.com",
                "READER:group-mygroup")
            .build());

    }
}
Copy
resources:
  image-store:
    type: gcp:storage:Bucket
    properties:
      name: image-store-bucket
      location: EU
  image-store-acl:
    type: gcp:storage:BucketACL
    properties:
      bucket: ${["image-store"].name}
      roleEntities:
        - OWNER:user-my.email@gmail.com
        - READER:group-mygroup
Copy

Create BucketACL Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new BucketACL(name: string, args: BucketACLArgs, opts?: CustomResourceOptions);
@overload
def BucketACL(resource_name: str,
              args: BucketACLArgs,
              opts: Optional[ResourceOptions] = None)

@overload
def BucketACL(resource_name: str,
              opts: Optional[ResourceOptions] = None,
              bucket: Optional[str] = None,
              default_acl: Optional[str] = None,
              predefined_acl: Optional[str] = None,
              role_entities: Optional[Sequence[str]] = None)
func NewBucketACL(ctx *Context, name string, args BucketACLArgs, opts ...ResourceOption) (*BucketACL, error)
public BucketACL(string name, BucketACLArgs args, CustomResourceOptions? opts = null)
public BucketACL(String name, BucketACLArgs args)
public BucketACL(String name, BucketACLArgs args, CustomResourceOptions options)
type: gcp:storage:BucketACL
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. BucketACLArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. BucketACLArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. BucketACLArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. BucketACLArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. BucketACLArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var bucketACLResource = new Gcp.Storage.BucketACL("bucketACLResource", new()
{
    Bucket = "string",
    DefaultAcl = "string",
    PredefinedAcl = "string",
    RoleEntities = new[]
    {
        "string",
    },
});
Copy
example, err := storage.NewBucketACL(ctx, "bucketACLResource", &storage.BucketACLArgs{
	Bucket:        pulumi.String("string"),
	DefaultAcl:    pulumi.String("string"),
	PredefinedAcl: pulumi.String("string"),
	RoleEntities: pulumi.StringArray{
		pulumi.String("string"),
	},
})
Copy
var bucketACLResource = new BucketACL("bucketACLResource", BucketACLArgs.builder()
    .bucket("string")
    .defaultAcl("string")
    .predefinedAcl("string")
    .roleEntities("string")
    .build());
Copy
bucket_acl_resource = gcp.storage.BucketACL("bucketACLResource",
    bucket="string",
    default_acl="string",
    predefined_acl="string",
    role_entities=["string"])
Copy
const bucketACLResource = new gcp.storage.BucketACL("bucketACLResource", {
    bucket: "string",
    defaultAcl: "string",
    predefinedAcl: "string",
    roleEntities: ["string"],
});
Copy
type: gcp:storage:BucketACL
properties:
    bucket: string
    defaultAcl: string
    predefinedAcl: string
    roleEntities:
        - string
Copy

BucketACL Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The BucketACL resource accepts the following input properties:

Bucket
This property is required.
Changes to this property will trigger replacement.
string
The name of the bucket it applies to.


DefaultAcl string
Configure this ACL to be the default ACL.
PredefinedAcl Changes to this property will trigger replacement. string
The canned GCS ACL to apply. Must be set if role_entity is not.
RoleEntities List<string>
List of role/entity pairs in the form ROLE:entity. See GCS Bucket ACL documentation for more details. Must be set if predefined_acl is not.
Bucket
This property is required.
Changes to this property will trigger replacement.
string
The name of the bucket it applies to.


DefaultAcl string
Configure this ACL to be the default ACL.
PredefinedAcl Changes to this property will trigger replacement. string
The canned GCS ACL to apply. Must be set if role_entity is not.
RoleEntities []string
List of role/entity pairs in the form ROLE:entity. See GCS Bucket ACL documentation for more details. Must be set if predefined_acl is not.
bucket
This property is required.
Changes to this property will trigger replacement.
String
The name of the bucket it applies to.


defaultAcl String
Configure this ACL to be the default ACL.
predefinedAcl Changes to this property will trigger replacement. String
The canned GCS ACL to apply. Must be set if role_entity is not.
roleEntities List<String>
List of role/entity pairs in the form ROLE:entity. See GCS Bucket ACL documentation for more details. Must be set if predefined_acl is not.
bucket
This property is required.
Changes to this property will trigger replacement.
string
The name of the bucket it applies to.


defaultAcl string
Configure this ACL to be the default ACL.
predefinedAcl Changes to this property will trigger replacement. string
The canned GCS ACL to apply. Must be set if role_entity is not.
roleEntities string[]
List of role/entity pairs in the form ROLE:entity. See GCS Bucket ACL documentation for more details. Must be set if predefined_acl is not.
bucket
This property is required.
Changes to this property will trigger replacement.
str
The name of the bucket it applies to.


default_acl str
Configure this ACL to be the default ACL.
predefined_acl Changes to this property will trigger replacement. str
The canned GCS ACL to apply. Must be set if role_entity is not.
role_entities Sequence[str]
List of role/entity pairs in the form ROLE:entity. See GCS Bucket ACL documentation for more details. Must be set if predefined_acl is not.
bucket
This property is required.
Changes to this property will trigger replacement.
String
The name of the bucket it applies to.


defaultAcl String
Configure this ACL to be the default ACL.
predefinedAcl Changes to this property will trigger replacement. String
The canned GCS ACL to apply. Must be set if role_entity is not.
roleEntities List<String>
List of role/entity pairs in the form ROLE:entity. See GCS Bucket ACL documentation for more details. Must be set if predefined_acl is not.

Outputs

All input properties are implicitly available as output properties. Additionally, the BucketACL resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing BucketACL Resource

Get an existing BucketACL resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: BucketACLState, opts?: CustomResourceOptions): BucketACL
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        bucket: Optional[str] = None,
        default_acl: Optional[str] = None,
        predefined_acl: Optional[str] = None,
        role_entities: Optional[Sequence[str]] = None) -> BucketACL
func GetBucketACL(ctx *Context, name string, id IDInput, state *BucketACLState, opts ...ResourceOption) (*BucketACL, error)
public static BucketACL Get(string name, Input<string> id, BucketACLState? state, CustomResourceOptions? opts = null)
public static BucketACL get(String name, Output<String> id, BucketACLState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Bucket Changes to this property will trigger replacement. string
The name of the bucket it applies to.


DefaultAcl string
Configure this ACL to be the default ACL.
PredefinedAcl Changes to this property will trigger replacement. string
The canned GCS ACL to apply. Must be set if role_entity is not.
RoleEntities List<string>
List of role/entity pairs in the form ROLE:entity. See GCS Bucket ACL documentation for more details. Must be set if predefined_acl is not.
Bucket Changes to this property will trigger replacement. string
The name of the bucket it applies to.


DefaultAcl string
Configure this ACL to be the default ACL.
PredefinedAcl Changes to this property will trigger replacement. string
The canned GCS ACL to apply. Must be set if role_entity is not.
RoleEntities []string
List of role/entity pairs in the form ROLE:entity. See GCS Bucket ACL documentation for more details. Must be set if predefined_acl is not.
bucket Changes to this property will trigger replacement. String
The name of the bucket it applies to.


defaultAcl String
Configure this ACL to be the default ACL.
predefinedAcl Changes to this property will trigger replacement. String
The canned GCS ACL to apply. Must be set if role_entity is not.
roleEntities List<String>
List of role/entity pairs in the form ROLE:entity. See GCS Bucket ACL documentation for more details. Must be set if predefined_acl is not.
bucket Changes to this property will trigger replacement. string
The name of the bucket it applies to.


defaultAcl string
Configure this ACL to be the default ACL.
predefinedAcl Changes to this property will trigger replacement. string
The canned GCS ACL to apply. Must be set if role_entity is not.
roleEntities string[]
List of role/entity pairs in the form ROLE:entity. See GCS Bucket ACL documentation for more details. Must be set if predefined_acl is not.
bucket Changes to this property will trigger replacement. str
The name of the bucket it applies to.


default_acl str
Configure this ACL to be the default ACL.
predefined_acl Changes to this property will trigger replacement. str
The canned GCS ACL to apply. Must be set if role_entity is not.
role_entities Sequence[str]
List of role/entity pairs in the form ROLE:entity. See GCS Bucket ACL documentation for more details. Must be set if predefined_acl is not.
bucket Changes to this property will trigger replacement. String
The name of the bucket it applies to.


defaultAcl String
Configure this ACL to be the default ACL.
predefinedAcl Changes to this property will trigger replacement. String
The canned GCS ACL to apply. Must be set if role_entity is not.
roleEntities List<String>
List of role/entity pairs in the form ROLE:entity. See GCS Bucket ACL documentation for more details. Must be set if predefined_acl is not.

Import

This resource does not support import.

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
Google Cloud (GCP) Classic pulumi/pulumi-gcp
License
Apache-2.0
Notes
This Pulumi package is based on the google-beta Terraform Provider.