gcp logo
Google Cloud Classic v6.52.0, Mar 22 23

gcp.storage.BucketIAMMember

Three different resources help you manage your IAM policy for Cloud Storage Bucket. Each of these resources serves a different use case:

  • gcp.storage.BucketIAMPolicy: Authoritative. Sets the IAM policy for the bucket and replaces any existing policy already attached.
  • gcp.storage.BucketIAMBinding: Authoritative for a given role. Updates the IAM policy to grant a role to a list of members. Other roles within the IAM policy for the bucket are preserved.
  • gcp.storage.BucketIAMMember: Non-authoritative. Updates the IAM policy to grant a role to a new member. Other members for the role for the bucket are preserved.

Note: gcp.storage.BucketIAMPolicy cannot be used in conjunction with gcp.storage.BucketIAMBinding and gcp.storage.BucketIAMMember or they will fight over what your policy should be.

Note: gcp.storage.BucketIAMBinding resources can be used in conjunction with gcp.storage.BucketIAMMember resources only if they do not grant privilege to the same role.

Note: This resource supports IAM Conditions but they have some known limitations which can be found here. Please review this article if you are having issues with IAM Conditions.

google_storage_bucket_iam_policy

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

const admin = gcp.organizations.getIAMPolicy({
    bindings: [{
        role: "roles/storage.admin",
        members: ["user:jane@example.com"],
    }],
});
const policy = new gcp.storage.BucketIAMPolicy("policy", {
    bucket: google_storage_bucket["default"].name,
    policyData: admin.then(admin => admin.policyData),
});
import pulumi
import pulumi_gcp as gcp

admin = gcp.organizations.get_iam_policy(bindings=[gcp.organizations.GetIAMPolicyBindingArgs(
    role="roles/storage.admin",
    members=["user:jane@example.com"],
)])
policy = gcp.storage.BucketIAMPolicy("policy",
    bucket=google_storage_bucket["default"]["name"],
    policy_data=admin.policy_data)
using System.Collections.Generic;
using Pulumi;
using Gcp = Pulumi.Gcp;

return await Deployment.RunAsync(() => 
{
    var admin = Gcp.Organizations.GetIAMPolicy.Invoke(new()
    {
        Bindings = new[]
        {
            new Gcp.Organizations.Inputs.GetIAMPolicyBindingInputArgs
            {
                Role = "roles/storage.admin",
                Members = new[]
                {
                    "user:jane@example.com",
                },
            },
        },
    });

    var policy = new Gcp.Storage.BucketIAMPolicy("policy", new()
    {
        Bucket = google_storage_bucket.Default.Name,
        PolicyData = admin.Apply(getIAMPolicyResult => getIAMPolicyResult.PolicyData),
    });

});
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		admin, err := organizations.LookupIAMPolicy(ctx, &organizations.LookupIAMPolicyArgs{
			Bindings: []organizations.GetIAMPolicyBinding{
				{
					Role: "roles/storage.admin",
					Members: []string{
						"user:jane@example.com",
					},
				},
			},
		}, nil)
		if err != nil {
			return err
		}
		_, err = storage.NewBucketIAMPolicy(ctx, "policy", &storage.BucketIAMPolicyArgs{
			Bucket:     pulumi.Any(google_storage_bucket.Default.Name),
			PolicyData: *pulumi.String(admin.PolicyData),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.organizations.OrganizationsFunctions;
import com.pulumi.gcp.organizations.inputs.GetIAMPolicyArgs;
import com.pulumi.gcp.storage.BucketIAMPolicy;
import com.pulumi.gcp.storage.BucketIAMPolicyArgs;
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) {
        final var admin = OrganizationsFunctions.getIAMPolicy(GetIAMPolicyArgs.builder()
            .bindings(GetIAMPolicyBindingArgs.builder()
                .role("roles/storage.admin")
                .members("user:jane@example.com")
                .build())
            .build());

        var policy = new BucketIAMPolicy("policy", BucketIAMPolicyArgs.builder()        
            .bucket(google_storage_bucket.default().name())
            .policyData(admin.applyValue(getIAMPolicyResult -> getIAMPolicyResult.policyData()))
            .build());

    }
}
resources:
  policy:
    type: gcp:storage:BucketIAMPolicy
    properties:
      bucket: ${google_storage_bucket.default.name}
      policyData: ${admin.policyData}
variables:
  admin:
    fn::invoke:
      Function: gcp:organizations:getIAMPolicy
      Arguments:
        bindings:
          - role: roles/storage.admin
            members:
              - user:jane@example.com

With IAM Conditions:

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

const admin = gcp.organizations.getIAMPolicy({
    bindings: [{
        role: "roles/storage.admin",
        members: ["user:jane@example.com"],
        condition: {
            title: "expires_after_2019_12_31",
            description: "Expiring at midnight of 2019-12-31",
            expression: "request.time < timestamp(\"2020-01-01T00:00:00Z\")",
        },
    }],
});
const policy = new gcp.storage.BucketIAMPolicy("policy", {
    bucket: google_storage_bucket["default"].name,
    policyData: admin.then(admin => admin.policyData),
});
import pulumi
import pulumi_gcp as gcp

admin = gcp.organizations.get_iam_policy(bindings=[gcp.organizations.GetIAMPolicyBindingArgs(
    role="roles/storage.admin",
    members=["user:jane@example.com"],
    condition=gcp.organizations.GetIAMPolicyBindingConditionArgs(
        title="expires_after_2019_12_31",
        description="Expiring at midnight of 2019-12-31",
        expression="request.time < timestamp(\"2020-01-01T00:00:00Z\")",
    ),
)])
policy = gcp.storage.BucketIAMPolicy("policy",
    bucket=google_storage_bucket["default"]["name"],
    policy_data=admin.policy_data)
using System.Collections.Generic;
using Pulumi;
using Gcp = Pulumi.Gcp;

return await Deployment.RunAsync(() => 
{
    var admin = Gcp.Organizations.GetIAMPolicy.Invoke(new()
    {
        Bindings = new[]
        {
            new Gcp.Organizations.Inputs.GetIAMPolicyBindingInputArgs
            {
                Role = "roles/storage.admin",
                Members = new[]
                {
                    "user:jane@example.com",
                },
                Condition = new Gcp.Organizations.Inputs.GetIAMPolicyBindingConditionInputArgs
                {
                    Title = "expires_after_2019_12_31",
                    Description = "Expiring at midnight of 2019-12-31",
                    Expression = "request.time < timestamp(\"2020-01-01T00:00:00Z\")",
                },
            },
        },
    });

    var policy = new Gcp.Storage.BucketIAMPolicy("policy", new()
    {
        Bucket = google_storage_bucket.Default.Name,
        PolicyData = admin.Apply(getIAMPolicyResult => getIAMPolicyResult.PolicyData),
    });

});
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		admin, err := organizations.LookupIAMPolicy(ctx, &organizations.LookupIAMPolicyArgs{
			Bindings: []organizations.GetIAMPolicyBinding{
				{
					Role: "roles/storage.admin",
					Members: []string{
						"user:jane@example.com",
					},
					Condition: {
						Title:       "expires_after_2019_12_31",
						Description: pulumi.StringRef("Expiring at midnight of 2019-12-31"),
						Expression:  "request.time < timestamp(\"2020-01-01T00:00:00Z\")",
					},
				},
			},
		}, nil)
		if err != nil {
			return err
		}
		_, err = storage.NewBucketIAMPolicy(ctx, "policy", &storage.BucketIAMPolicyArgs{
			Bucket:     pulumi.Any(google_storage_bucket.Default.Name),
			PolicyData: *pulumi.String(admin.PolicyData),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.organizations.OrganizationsFunctions;
import com.pulumi.gcp.organizations.inputs.GetIAMPolicyArgs;
import com.pulumi.gcp.storage.BucketIAMPolicy;
import com.pulumi.gcp.storage.BucketIAMPolicyArgs;
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) {
        final var admin = OrganizationsFunctions.getIAMPolicy(GetIAMPolicyArgs.builder()
            .bindings(GetIAMPolicyBindingArgs.builder()
                .role("roles/storage.admin")
                .members("user:jane@example.com")
                .condition(GetIAMPolicyBindingConditionArgs.builder()
                    .title("expires_after_2019_12_31")
                    .description("Expiring at midnight of 2019-12-31")
                    .expression("request.time < timestamp(\"2020-01-01T00:00:00Z\")")
                    .build())
                .build())
            .build());

        var policy = new BucketIAMPolicy("policy", BucketIAMPolicyArgs.builder()        
            .bucket(google_storage_bucket.default().name())
            .policyData(admin.applyValue(getIAMPolicyResult -> getIAMPolicyResult.policyData()))
            .build());

    }
}
resources:
  policy:
    type: gcp:storage:BucketIAMPolicy
    properties:
      bucket: ${google_storage_bucket.default.name}
      policyData: ${admin.policyData}
variables:
  admin:
    fn::invoke:
      Function: gcp:organizations:getIAMPolicy
      Arguments:
        bindings:
          - role: roles/storage.admin
            members:
              - user:jane@example.com
            condition:
              title: expires_after_2019_12_31
              description: Expiring at midnight of 2019-12-31
              expression: request.time < timestamp("2020-01-01T00:00:00Z")

google_storage_bucket_iam_binding

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

const binding = new gcp.storage.BucketIAMBinding("binding", {
    bucket: google_storage_bucket["default"].name,
    role: "roles/storage.admin",
    members: ["user:jane@example.com"],
});
import pulumi
import pulumi_gcp as gcp

binding = gcp.storage.BucketIAMBinding("binding",
    bucket=google_storage_bucket["default"]["name"],
    role="roles/storage.admin",
    members=["user:jane@example.com"])
using System.Collections.Generic;
using Pulumi;
using Gcp = Pulumi.Gcp;

return await Deployment.RunAsync(() => 
{
    var binding = new Gcp.Storage.BucketIAMBinding("binding", new()
    {
        Bucket = google_storage_bucket.Default.Name,
        Role = "roles/storage.admin",
        Members = new[]
        {
            "user:jane@example.com",
        },
    });

});
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := storage.NewBucketIAMBinding(ctx, "binding", &storage.BucketIAMBindingArgs{
			Bucket: pulumi.Any(google_storage_bucket.Default.Name),
			Role:   pulumi.String("roles/storage.admin"),
			Members: pulumi.StringArray{
				pulumi.String("user:jane@example.com"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.storage.BucketIAMBinding;
import com.pulumi.gcp.storage.BucketIAMBindingArgs;
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 binding = new BucketIAMBinding("binding", BucketIAMBindingArgs.builder()        
            .bucket(google_storage_bucket.default().name())
            .role("roles/storage.admin")
            .members("user:jane@example.com")
            .build());

    }
}
resources:
  binding:
    type: gcp:storage:BucketIAMBinding
    properties:
      bucket: ${google_storage_bucket.default.name}
      role: roles/storage.admin
      members:
        - user:jane@example.com

With IAM Conditions:

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

const binding = new gcp.storage.BucketIAMBinding("binding", {
    bucket: google_storage_bucket["default"].name,
    role: "roles/storage.admin",
    members: ["user:jane@example.com"],
    condition: {
        title: "expires_after_2019_12_31",
        description: "Expiring at midnight of 2019-12-31",
        expression: "request.time < timestamp(\"2020-01-01T00:00:00Z\")",
    },
});
import pulumi
import pulumi_gcp as gcp

binding = gcp.storage.BucketIAMBinding("binding",
    bucket=google_storage_bucket["default"]["name"],
    role="roles/storage.admin",
    members=["user:jane@example.com"],
    condition=gcp.storage.BucketIAMBindingConditionArgs(
        title="expires_after_2019_12_31",
        description="Expiring at midnight of 2019-12-31",
        expression="request.time < timestamp(\"2020-01-01T00:00:00Z\")",
    ))
using System.Collections.Generic;
using Pulumi;
using Gcp = Pulumi.Gcp;

return await Deployment.RunAsync(() => 
{
    var binding = new Gcp.Storage.BucketIAMBinding("binding", new()
    {
        Bucket = google_storage_bucket.Default.Name,
        Role = "roles/storage.admin",
        Members = new[]
        {
            "user:jane@example.com",
        },
        Condition = new Gcp.Storage.Inputs.BucketIAMBindingConditionArgs
        {
            Title = "expires_after_2019_12_31",
            Description = "Expiring at midnight of 2019-12-31",
            Expression = "request.time < timestamp(\"2020-01-01T00:00:00Z\")",
        },
    });

});
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := storage.NewBucketIAMBinding(ctx, "binding", &storage.BucketIAMBindingArgs{
			Bucket: pulumi.Any(google_storage_bucket.Default.Name),
			Role:   pulumi.String("roles/storage.admin"),
			Members: pulumi.StringArray{
				pulumi.String("user:jane@example.com"),
			},
			Condition: &storage.BucketIAMBindingConditionArgs{
				Title:       pulumi.String("expires_after_2019_12_31"),
				Description: pulumi.String("Expiring at midnight of 2019-12-31"),
				Expression:  pulumi.String("request.time < timestamp(\"2020-01-01T00:00:00Z\")"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.storage.BucketIAMBinding;
import com.pulumi.gcp.storage.BucketIAMBindingArgs;
import com.pulumi.gcp.storage.inputs.BucketIAMBindingConditionArgs;
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 binding = new BucketIAMBinding("binding", BucketIAMBindingArgs.builder()        
            .bucket(google_storage_bucket.default().name())
            .role("roles/storage.admin")
            .members("user:jane@example.com")
            .condition(BucketIAMBindingConditionArgs.builder()
                .title("expires_after_2019_12_31")
                .description("Expiring at midnight of 2019-12-31")
                .expression("request.time < timestamp(\"2020-01-01T00:00:00Z\")")
                .build())
            .build());

    }
}
resources:
  binding:
    type: gcp:storage:BucketIAMBinding
    properties:
      bucket: ${google_storage_bucket.default.name}
      role: roles/storage.admin
      members:
        - user:jane@example.com
      condition:
        title: expires_after_2019_12_31
        description: Expiring at midnight of 2019-12-31
        expression: request.time < timestamp("2020-01-01T00:00:00Z")

google_storage_bucket_iam_member

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

const member = new gcp.storage.BucketIAMMember("member", {
    bucket: google_storage_bucket["default"].name,
    role: "roles/storage.admin",
    member: "user:jane@example.com",
});
import pulumi
import pulumi_gcp as gcp

member = gcp.storage.BucketIAMMember("member",
    bucket=google_storage_bucket["default"]["name"],
    role="roles/storage.admin",
    member="user:jane@example.com")
using System.Collections.Generic;
using Pulumi;
using Gcp = Pulumi.Gcp;

return await Deployment.RunAsync(() => 
{
    var member = new Gcp.Storage.BucketIAMMember("member", new()
    {
        Bucket = google_storage_bucket.Default.Name,
        Role = "roles/storage.admin",
        Member = "user:jane@example.com",
    });

});
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := storage.NewBucketIAMMember(ctx, "member", &storage.BucketIAMMemberArgs{
			Bucket: pulumi.Any(google_storage_bucket.Default.Name),
			Role:   pulumi.String("roles/storage.admin"),
			Member: pulumi.String("user:jane@example.com"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.storage.BucketIAMMember;
import com.pulumi.gcp.storage.BucketIAMMemberArgs;
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 member = new BucketIAMMember("member", BucketIAMMemberArgs.builder()        
            .bucket(google_storage_bucket.default().name())
            .role("roles/storage.admin")
            .member("user:jane@example.com")
            .build());

    }
}
resources:
  member:
    type: gcp:storage:BucketIAMMember
    properties:
      bucket: ${google_storage_bucket.default.name}
      role: roles/storage.admin
      member: user:jane@example.com

With IAM Conditions:

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

const member = new gcp.storage.BucketIAMMember("member", {
    bucket: google_storage_bucket["default"].name,
    role: "roles/storage.admin",
    member: "user:jane@example.com",
    condition: {
        title: "expires_after_2019_12_31",
        description: "Expiring at midnight of 2019-12-31",
        expression: "request.time < timestamp(\"2020-01-01T00:00:00Z\")",
    },
});
import pulumi
import pulumi_gcp as gcp

member = gcp.storage.BucketIAMMember("member",
    bucket=google_storage_bucket["default"]["name"],
    role="roles/storage.admin",
    member="user:jane@example.com",
    condition=gcp.storage.BucketIAMMemberConditionArgs(
        title="expires_after_2019_12_31",
        description="Expiring at midnight of 2019-12-31",
        expression="request.time < timestamp(\"2020-01-01T00:00:00Z\")",
    ))
using System.Collections.Generic;
using Pulumi;
using Gcp = Pulumi.Gcp;

return await Deployment.RunAsync(() => 
{
    var member = new Gcp.Storage.BucketIAMMember("member", new()
    {
        Bucket = google_storage_bucket.Default.Name,
        Role = "roles/storage.admin",
        Member = "user:jane@example.com",
        Condition = new Gcp.Storage.Inputs.BucketIAMMemberConditionArgs
        {
            Title = "expires_after_2019_12_31",
            Description = "Expiring at midnight of 2019-12-31",
            Expression = "request.time < timestamp(\"2020-01-01T00:00:00Z\")",
        },
    });

});
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := storage.NewBucketIAMMember(ctx, "member", &storage.BucketIAMMemberArgs{
			Bucket: pulumi.Any(google_storage_bucket.Default.Name),
			Role:   pulumi.String("roles/storage.admin"),
			Member: pulumi.String("user:jane@example.com"),
			Condition: &storage.BucketIAMMemberConditionArgs{
				Title:       pulumi.String("expires_after_2019_12_31"),
				Description: pulumi.String("Expiring at midnight of 2019-12-31"),
				Expression:  pulumi.String("request.time < timestamp(\"2020-01-01T00:00:00Z\")"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.storage.BucketIAMMember;
import com.pulumi.gcp.storage.BucketIAMMemberArgs;
import com.pulumi.gcp.storage.inputs.BucketIAMMemberConditionArgs;
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 member = new BucketIAMMember("member", BucketIAMMemberArgs.builder()        
            .bucket(google_storage_bucket.default().name())
            .role("roles/storage.admin")
            .member("user:jane@example.com")
            .condition(BucketIAMMemberConditionArgs.builder()
                .title("expires_after_2019_12_31")
                .description("Expiring at midnight of 2019-12-31")
                .expression("request.time < timestamp(\"2020-01-01T00:00:00Z\")")
                .build())
            .build());

    }
}
resources:
  member:
    type: gcp:storage:BucketIAMMember
    properties:
      bucket: ${google_storage_bucket.default.name}
      role: roles/storage.admin
      member: user:jane@example.com
      condition:
        title: expires_after_2019_12_31
        description: Expiring at midnight of 2019-12-31
        expression: request.time < timestamp("2020-01-01T00:00:00Z")

Create BucketIAMMember Resource

new BucketIAMMember(name: string, args: BucketIAMMemberArgs, opts?: CustomResourceOptions);
@overload
def BucketIAMMember(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    bucket: Optional[str] = None,
                    condition: Optional[BucketIAMMemberConditionArgs] = None,
                    member: Optional[str] = None,
                    role: Optional[str] = None)
@overload
def BucketIAMMember(resource_name: str,
                    args: BucketIAMMemberArgs,
                    opts: Optional[ResourceOptions] = None)
func NewBucketIAMMember(ctx *Context, name string, args BucketIAMMemberArgs, opts ...ResourceOption) (*BucketIAMMember, error)
public BucketIAMMember(string name, BucketIAMMemberArgs args, CustomResourceOptions? opts = null)
public BucketIAMMember(String name, BucketIAMMemberArgs args)
public BucketIAMMember(String name, BucketIAMMemberArgs args, CustomResourceOptions options)
type: gcp:storage:BucketIAMMember
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

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

BucketIAMMember Resource Properties

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

Inputs

The BucketIAMMember resource accepts the following input properties:

Bucket string

Used to find the parent resource to bind the IAM policy to

Member string
Role string

The role that should be applied. Only one gcp.storage.BucketIAMBinding can be used per role. Note that custom roles must be of the format [projects|organizations]/{parent-name}/roles/{role-name}.

Condition BucketIAMMemberConditionArgs

An IAM Condition for a given binding. Structure is documented below.

Bucket string

Used to find the parent resource to bind the IAM policy to

Member string
Role string

The role that should be applied. Only one gcp.storage.BucketIAMBinding can be used per role. Note that custom roles must be of the format [projects|organizations]/{parent-name}/roles/{role-name}.

Condition BucketIAMMemberConditionArgs

An IAM Condition for a given binding. Structure is documented below.

bucket String

Used to find the parent resource to bind the IAM policy to

member String
role String

The role that should be applied. Only one gcp.storage.BucketIAMBinding can be used per role. Note that custom roles must be of the format [projects|organizations]/{parent-name}/roles/{role-name}.

condition BucketIAMMemberConditionArgs

An IAM Condition for a given binding. Structure is documented below.

bucket string

Used to find the parent resource to bind the IAM policy to

member string
role string

The role that should be applied. Only one gcp.storage.BucketIAMBinding can be used per role. Note that custom roles must be of the format [projects|organizations]/{parent-name}/roles/{role-name}.

condition BucketIAMMemberConditionArgs

An IAM Condition for a given binding. Structure is documented below.

bucket str

Used to find the parent resource to bind the IAM policy to

member str
role str

The role that should be applied. Only one gcp.storage.BucketIAMBinding can be used per role. Note that custom roles must be of the format [projects|organizations]/{parent-name}/roles/{role-name}.

condition BucketIAMMemberConditionArgs

An IAM Condition for a given binding. Structure is documented below.

bucket String

Used to find the parent resource to bind the IAM policy to

member String
role String

The role that should be applied. Only one gcp.storage.BucketIAMBinding can be used per role. Note that custom roles must be of the format [projects|organizations]/{parent-name}/roles/{role-name}.

condition Property Map

An IAM Condition for a given binding. Structure is documented below.

Outputs

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

Etag string

(Computed) The etag of the IAM policy.

Id string

The provider-assigned unique ID for this managed resource.

Etag string

(Computed) The etag of the IAM policy.

Id string

The provider-assigned unique ID for this managed resource.

etag String

(Computed) The etag of the IAM policy.

id String

The provider-assigned unique ID for this managed resource.

etag string

(Computed) The etag of the IAM policy.

id string

The provider-assigned unique ID for this managed resource.

etag str

(Computed) The etag of the IAM policy.

id str

The provider-assigned unique ID for this managed resource.

etag String

(Computed) The etag of the IAM policy.

id String

The provider-assigned unique ID for this managed resource.

Look up Existing BucketIAMMember Resource

Get an existing BucketIAMMember 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?: BucketIAMMemberState, opts?: CustomResourceOptions): BucketIAMMember
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        bucket: Optional[str] = None,
        condition: Optional[BucketIAMMemberConditionArgs] = None,
        etag: Optional[str] = None,
        member: Optional[str] = None,
        role: Optional[str] = None) -> BucketIAMMember
func GetBucketIAMMember(ctx *Context, name string, id IDInput, state *BucketIAMMemberState, opts ...ResourceOption) (*BucketIAMMember, error)
public static BucketIAMMember Get(string name, Input<string> id, BucketIAMMemberState? state, CustomResourceOptions? opts = null)
public static BucketIAMMember get(String name, Output<String> id, BucketIAMMemberState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
name
The unique name of the resulting resource.
id
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
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
name
The unique name of the resulting resource.
id
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
The unique name of the resulting resource.
id
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
The unique name of the resulting resource.
id
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 string

Used to find the parent resource to bind the IAM policy to

Condition BucketIAMMemberConditionArgs

An IAM Condition for a given binding. Structure is documented below.

Etag string

(Computed) The etag of the IAM policy.

Member string
Role string

The role that should be applied. Only one gcp.storage.BucketIAMBinding can be used per role. Note that custom roles must be of the format [projects|organizations]/{parent-name}/roles/{role-name}.

Bucket string

Used to find the parent resource to bind the IAM policy to

Condition BucketIAMMemberConditionArgs

An IAM Condition for a given binding. Structure is documented below.

Etag string

(Computed) The etag of the IAM policy.

Member string
Role string

The role that should be applied. Only one gcp.storage.BucketIAMBinding can be used per role. Note that custom roles must be of the format [projects|organizations]/{parent-name}/roles/{role-name}.

bucket String

Used to find the parent resource to bind the IAM policy to

condition BucketIAMMemberConditionArgs

An IAM Condition for a given binding. Structure is documented below.

etag String

(Computed) The etag of the IAM policy.

member String
role String

The role that should be applied. Only one gcp.storage.BucketIAMBinding can be used per role. Note that custom roles must be of the format [projects|organizations]/{parent-name}/roles/{role-name}.

bucket string

Used to find the parent resource to bind the IAM policy to

condition BucketIAMMemberConditionArgs

An IAM Condition for a given binding. Structure is documented below.

etag string

(Computed) The etag of the IAM policy.

member string
role string

The role that should be applied. Only one gcp.storage.BucketIAMBinding can be used per role. Note that custom roles must be of the format [projects|organizations]/{parent-name}/roles/{role-name}.

bucket str

Used to find the parent resource to bind the IAM policy to

condition BucketIAMMemberConditionArgs

An IAM Condition for a given binding. Structure is documented below.

etag str

(Computed) The etag of the IAM policy.

member str
role str

The role that should be applied. Only one gcp.storage.BucketIAMBinding can be used per role. Note that custom roles must be of the format [projects|organizations]/{parent-name}/roles/{role-name}.

bucket String

Used to find the parent resource to bind the IAM policy to

condition Property Map

An IAM Condition for a given binding. Structure is documented below.

etag String

(Computed) The etag of the IAM policy.

member String
role String

The role that should be applied. Only one gcp.storage.BucketIAMBinding can be used per role. Note that custom roles must be of the format [projects|organizations]/{parent-name}/roles/{role-name}.

Supporting Types

BucketIAMMemberCondition

Expression string

Textual representation of an expression in Common Expression Language syntax.

Title string

A title for the expression, i.e. a short string describing its purpose.

Description string

An optional description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.

Expression string

Textual representation of an expression in Common Expression Language syntax.

Title string

A title for the expression, i.e. a short string describing its purpose.

Description string

An optional description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.

expression String

Textual representation of an expression in Common Expression Language syntax.

title String

A title for the expression, i.e. a short string describing its purpose.

description String

An optional description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.

expression string

Textual representation of an expression in Common Expression Language syntax.

title string

A title for the expression, i.e. a short string describing its purpose.

description string

An optional description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.

expression str

Textual representation of an expression in Common Expression Language syntax.

title str

A title for the expression, i.e. a short string describing its purpose.

description str

An optional description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.

expression String

Textual representation of an expression in Common Expression Language syntax.

title String

A title for the expression, i.e. a short string describing its purpose.

description String

An optional description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.

Import

For all import syntaxes, the “resource in question” can take any of the following forms* b/{{name}} * {{name}} Any variables not passed in the import command will be taken from the provider configuration. Cloud Storage bucket IAM resources can be imported using the resource identifiers, role, and member. IAM member imports use space-delimited identifiersthe resource in question, the role, and the member identity, e.g.

 $ pulumi import gcp:storage/bucketIAMMember:BucketIAMMember editor "b/{{bucket}} roles/storage.objectViewer user:jane@example.com"

IAM binding imports use space-delimited identifiersthe resource in question and the role, e.g.

 $ pulumi import gcp:storage/bucketIAMMember:BucketIAMMember editor "b/{{bucket}} roles/storage.objectViewer"

IAM policy imports use the identifier of the resource in question, e.g.

 $ pulumi import gcp:storage/bucketIAMMember:BucketIAMMember editor b/{{bucket}}

-> Custom RolesIf you’re importing a IAM resource with a custom role, make sure to use the

full name of the custom role, e.g. [projects/my-project|organizations/my-org]/roles/my-custom-role.

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.