1. Packages
  2. Google Cloud (GCP) Classic
  3. API Docs
  4. billing
  5. AccountIamMember
Google Cloud Classic v7.19.0 published on Thursday, Apr 18, 2024 by Pulumi

gcp.billing.AccountIamMember

Explore with Pulumi AI

gcp logo
Google Cloud Classic v7.19.0 published on Thursday, Apr 18, 2024 by Pulumi

    Three different resources help you manage IAM policies on billing accounts. Each of these resources serves a different use case:

    • gcp.billing.AccountIamPolicy: Authoritative. Sets the IAM policy for the billing accounts and replaces any existing policy already attached.
    • gcp.billing.AccountIamBinding: 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 table are preserved.
    • gcp.billing.AccountIamMember: Non-authoritative. Updates the IAM policy to grant a role to a new member. Other members for the role of the billing accounts are preserved.

    Note: gcp.billing.AccountIamPolicy cannot be used in conjunction with gcp.billing.AccountIamBinding and gcp.billing.AccountIamMember or they will fight over what your policy should be. In addition, be careful not to accidentally unset ownership of the billing account as gcp.billing.AccountIamPolicy replaces the entire policy.

    Note: gcp.billing.AccountIamBinding resources can be used in conjunction with gcp.billing.AccountIamMember resources only if they do not grant privilege to the same role.

    google_billing_account_iam_policy

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const admin = gcp.organizations.getIAMPolicy({
        bindings: [{
            role: "roles/billing.viewer",
            members: ["user:jane@example.com"],
        }],
    });
    const editor = new gcp.billing.AccountIamPolicy("editor", {
        billingAccountId: "00AA00-000AAA-00AA0A",
        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/billing.viewer",
        members=["user:jane@example.com"],
    )])
    editor = gcp.billing.AccountIamPolicy("editor",
        billing_account_id="00AA00-000AAA-00AA0A",
        policy_data=admin.policy_data)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/billing"
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/organizations"
    	"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/billing.viewer",
    					Members: []string{
    						"user:jane@example.com",
    					},
    				},
    			},
    		}, nil)
    		if err != nil {
    			return err
    		}
    		_, err = billing.NewAccountIamPolicy(ctx, "editor", &billing.AccountIamPolicyArgs{
    			BillingAccountId: pulumi.String("00AA00-000AAA-00AA0A"),
    			PolicyData:       pulumi.String(admin.PolicyData),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    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/billing.viewer",
                    Members = new[]
                    {
                        "user:jane@example.com",
                    },
                },
            },
        });
    
        var editor = new Gcp.Billing.AccountIamPolicy("editor", new()
        {
            BillingAccountId = "00AA00-000AAA-00AA0A",
            PolicyData = admin.Apply(getIAMPolicyResult => getIAMPolicyResult.PolicyData),
        });
    
    });
    
    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.billing.AccountIamPolicy;
    import com.pulumi.gcp.billing.AccountIamPolicyArgs;
    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/billing.viewer")
                    .members("user:jane@example.com")
                    .build())
                .build());
    
            var editor = new AccountIamPolicy("editor", AccountIamPolicyArgs.builder()        
                .billingAccountId("00AA00-000AAA-00AA0A")
                .policyData(admin.applyValue(getIAMPolicyResult -> getIAMPolicyResult.policyData()))
                .build());
    
        }
    }
    
    resources:
      editor:
        type: gcp:billing:AccountIamPolicy
        properties:
          billingAccountId: 00AA00-000AAA-00AA0A
          policyData: ${admin.policyData}
    variables:
      admin:
        fn::invoke:
          Function: gcp:organizations:getIAMPolicy
          Arguments:
            bindings:
              - role: roles/billing.viewer
                members:
                  - user:jane@example.com
    

    google_billing_account_iam_binding

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const editor = new gcp.billing.AccountIamBinding("editor", {
        billingAccountId: "00AA00-000AAA-00AA0A",
        role: "roles/billing.viewer",
        members: ["user:jane@example.com"],
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    editor = gcp.billing.AccountIamBinding("editor",
        billing_account_id="00AA00-000AAA-00AA0A",
        role="roles/billing.viewer",
        members=["user:jane@example.com"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/billing"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := billing.NewAccountIamBinding(ctx, "editor", &billing.AccountIamBindingArgs{
    			BillingAccountId: pulumi.String("00AA00-000AAA-00AA0A"),
    			Role:             pulumi.String("roles/billing.viewer"),
    			Members: pulumi.StringArray{
    				pulumi.String("user:jane@example.com"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Gcp = Pulumi.Gcp;
    
    return await Deployment.RunAsync(() => 
    {
        var editor = new Gcp.Billing.AccountIamBinding("editor", new()
        {
            BillingAccountId = "00AA00-000AAA-00AA0A",
            Role = "roles/billing.viewer",
            Members = new[]
            {
                "user:jane@example.com",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.billing.AccountIamBinding;
    import com.pulumi.gcp.billing.AccountIamBindingArgs;
    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 editor = new AccountIamBinding("editor", AccountIamBindingArgs.builder()        
                .billingAccountId("00AA00-000AAA-00AA0A")
                .role("roles/billing.viewer")
                .members("user:jane@example.com")
                .build());
    
        }
    }
    
    resources:
      editor:
        type: gcp:billing:AccountIamBinding
        properties:
          billingAccountId: 00AA00-000AAA-00AA0A
          role: roles/billing.viewer
          members:
            - user:jane@example.com
    

    google_billing_account_iam_member

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const editor = new gcp.billing.AccountIamMember("editor", {
        billingAccountId: "00AA00-000AAA-00AA0A",
        role: "roles/billing.viewer",
        member: "user:jane@example.com",
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    editor = gcp.billing.AccountIamMember("editor",
        billing_account_id="00AA00-000AAA-00AA0A",
        role="roles/billing.viewer",
        member="user:jane@example.com")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/billing"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := billing.NewAccountIamMember(ctx, "editor", &billing.AccountIamMemberArgs{
    			BillingAccountId: pulumi.String("00AA00-000AAA-00AA0A"),
    			Role:             pulumi.String("roles/billing.viewer"),
    			Member:           pulumi.String("user:jane@example.com"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Gcp = Pulumi.Gcp;
    
    return await Deployment.RunAsync(() => 
    {
        var editor = new Gcp.Billing.AccountIamMember("editor", new()
        {
            BillingAccountId = "00AA00-000AAA-00AA0A",
            Role = "roles/billing.viewer",
            Member = "user:jane@example.com",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.billing.AccountIamMember;
    import com.pulumi.gcp.billing.AccountIamMemberArgs;
    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 editor = new AccountIamMember("editor", AccountIamMemberArgs.builder()        
                .billingAccountId("00AA00-000AAA-00AA0A")
                .role("roles/billing.viewer")
                .member("user:jane@example.com")
                .build());
    
        }
    }
    
    resources:
      editor:
        type: gcp:billing:AccountIamMember
        properties:
          billingAccountId: 00AA00-000AAA-00AA0A
          role: roles/billing.viewer
          member: user:jane@example.com
    

    google_billing_account_iam_policy

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const admin = gcp.organizations.getIAMPolicy({
        bindings: [{
            role: "roles/billing.viewer",
            members: ["user:jane@example.com"],
        }],
    });
    const editor = new gcp.billing.AccountIamPolicy("editor", {
        billingAccountId: "00AA00-000AAA-00AA0A",
        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/billing.viewer",
        members=["user:jane@example.com"],
    )])
    editor = gcp.billing.AccountIamPolicy("editor",
        billing_account_id="00AA00-000AAA-00AA0A",
        policy_data=admin.policy_data)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/billing"
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/organizations"
    	"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/billing.viewer",
    					Members: []string{
    						"user:jane@example.com",
    					},
    				},
    			},
    		}, nil)
    		if err != nil {
    			return err
    		}
    		_, err = billing.NewAccountIamPolicy(ctx, "editor", &billing.AccountIamPolicyArgs{
    			BillingAccountId: pulumi.String("00AA00-000AAA-00AA0A"),
    			PolicyData:       pulumi.String(admin.PolicyData),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    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/billing.viewer",
                    Members = new[]
                    {
                        "user:jane@example.com",
                    },
                },
            },
        });
    
        var editor = new Gcp.Billing.AccountIamPolicy("editor", new()
        {
            BillingAccountId = "00AA00-000AAA-00AA0A",
            PolicyData = admin.Apply(getIAMPolicyResult => getIAMPolicyResult.PolicyData),
        });
    
    });
    
    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.billing.AccountIamPolicy;
    import com.pulumi.gcp.billing.AccountIamPolicyArgs;
    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/billing.viewer")
                    .members("user:jane@example.com")
                    .build())
                .build());
    
            var editor = new AccountIamPolicy("editor", AccountIamPolicyArgs.builder()        
                .billingAccountId("00AA00-000AAA-00AA0A")
                .policyData(admin.applyValue(getIAMPolicyResult -> getIAMPolicyResult.policyData()))
                .build());
    
        }
    }
    
    resources:
      editor:
        type: gcp:billing:AccountIamPolicy
        properties:
          billingAccountId: 00AA00-000AAA-00AA0A
          policyData: ${admin.policyData}
    variables:
      admin:
        fn::invoke:
          Function: gcp:organizations:getIAMPolicy
          Arguments:
            bindings:
              - role: roles/billing.viewer
                members:
                  - user:jane@example.com
    

    google_billing_account_iam_binding

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const editor = new gcp.billing.AccountIamBinding("editor", {
        billingAccountId: "00AA00-000AAA-00AA0A",
        role: "roles/billing.viewer",
        members: ["user:jane@example.com"],
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    editor = gcp.billing.AccountIamBinding("editor",
        billing_account_id="00AA00-000AAA-00AA0A",
        role="roles/billing.viewer",
        members=["user:jane@example.com"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/billing"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := billing.NewAccountIamBinding(ctx, "editor", &billing.AccountIamBindingArgs{
    			BillingAccountId: pulumi.String("00AA00-000AAA-00AA0A"),
    			Role:             pulumi.String("roles/billing.viewer"),
    			Members: pulumi.StringArray{
    				pulumi.String("user:jane@example.com"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Gcp = Pulumi.Gcp;
    
    return await Deployment.RunAsync(() => 
    {
        var editor = new Gcp.Billing.AccountIamBinding("editor", new()
        {
            BillingAccountId = "00AA00-000AAA-00AA0A",
            Role = "roles/billing.viewer",
            Members = new[]
            {
                "user:jane@example.com",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.billing.AccountIamBinding;
    import com.pulumi.gcp.billing.AccountIamBindingArgs;
    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 editor = new AccountIamBinding("editor", AccountIamBindingArgs.builder()        
                .billingAccountId("00AA00-000AAA-00AA0A")
                .role("roles/billing.viewer")
                .members("user:jane@example.com")
                .build());
    
        }
    }
    
    resources:
      editor:
        type: gcp:billing:AccountIamBinding
        properties:
          billingAccountId: 00AA00-000AAA-00AA0A
          role: roles/billing.viewer
          members:
            - user:jane@example.com
    

    google_billing_account_iam_member

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const editor = new gcp.billing.AccountIamMember("editor", {
        billingAccountId: "00AA00-000AAA-00AA0A",
        role: "roles/billing.viewer",
        member: "user:jane@example.com",
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    editor = gcp.billing.AccountIamMember("editor",
        billing_account_id="00AA00-000AAA-00AA0A",
        role="roles/billing.viewer",
        member="user:jane@example.com")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/billing"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := billing.NewAccountIamMember(ctx, "editor", &billing.AccountIamMemberArgs{
    			BillingAccountId: pulumi.String("00AA00-000AAA-00AA0A"),
    			Role:             pulumi.String("roles/billing.viewer"),
    			Member:           pulumi.String("user:jane@example.com"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Gcp = Pulumi.Gcp;
    
    return await Deployment.RunAsync(() => 
    {
        var editor = new Gcp.Billing.AccountIamMember("editor", new()
        {
            BillingAccountId = "00AA00-000AAA-00AA0A",
            Role = "roles/billing.viewer",
            Member = "user:jane@example.com",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.billing.AccountIamMember;
    import com.pulumi.gcp.billing.AccountIamMemberArgs;
    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 editor = new AccountIamMember("editor", AccountIamMemberArgs.builder()        
                .billingAccountId("00AA00-000AAA-00AA0A")
                .role("roles/billing.viewer")
                .member("user:jane@example.com")
                .build());
    
        }
    }
    
    resources:
      editor:
        type: gcp:billing:AccountIamMember
        properties:
          billingAccountId: 00AA00-000AAA-00AA0A
          role: roles/billing.viewer
          member: user:jane@example.com
    

    Create AccountIamMember Resource

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

    Constructor syntax

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

    Parameters

    name string
    The unique name of the resource.
    args AccountIamMemberArgs
    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 AccountIamMemberArgs
    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 AccountIamMemberArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AccountIamMemberArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AccountIamMemberArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

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

    var accountIamMemberResource = new Gcp.Billing.AccountIamMember("accountIamMemberResource", new()
    {
        BillingAccountId = "string",
        Member = "string",
        Role = "string",
        Condition = new Gcp.Billing.Inputs.AccountIamMemberConditionArgs
        {
            Expression = "string",
            Title = "string",
            Description = "string",
        },
    });
    
    example, err := billing.NewAccountIamMember(ctx, "accountIamMemberResource", &billing.AccountIamMemberArgs{
    	BillingAccountId: pulumi.String("string"),
    	Member:           pulumi.String("string"),
    	Role:             pulumi.String("string"),
    	Condition: &billing.AccountIamMemberConditionArgs{
    		Expression:  pulumi.String("string"),
    		Title:       pulumi.String("string"),
    		Description: pulumi.String("string"),
    	},
    })
    
    var accountIamMemberResource = new AccountIamMember("accountIamMemberResource", AccountIamMemberArgs.builder()        
        .billingAccountId("string")
        .member("string")
        .role("string")
        .condition(AccountIamMemberConditionArgs.builder()
            .expression("string")
            .title("string")
            .description("string")
            .build())
        .build());
    
    account_iam_member_resource = gcp.billing.AccountIamMember("accountIamMemberResource",
        billing_account_id="string",
        member="string",
        role="string",
        condition=gcp.billing.AccountIamMemberConditionArgs(
            expression="string",
            title="string",
            description="string",
        ))
    
    const accountIamMemberResource = new gcp.billing.AccountIamMember("accountIamMemberResource", {
        billingAccountId: "string",
        member: "string",
        role: "string",
        condition: {
            expression: "string",
            title: "string",
            description: "string",
        },
    });
    
    type: gcp:billing:AccountIamMember
    properties:
        billingAccountId: string
        condition:
            description: string
            expression: string
            title: string
        member: string
        role: string
    

    AccountIamMember 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 AccountIamMember resource accepts the following input properties:

    BillingAccountId string

    The billing account id.

    For gcp.billing.AccountIamMember or gcp.billing.AccountIamBinding:

    Member string
    Identities that will be granted the privilege in role. Each entry can have one of the following values:

    • user:{emailid}: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
    • serviceAccount:{emailid}: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
    • group:{emailid}: An email address that represents a Google group. For example, admins@example.com.
    • domain:{domain}: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
    Role string

    The role that should be applied. Only one gcp.billing.AccountIamBinding can be used per role. Note that custom roles must be of the format [projects|organizations]/{parent-name}/roles/{role-name}. Read more about roles here.

    gcp.billing.AccountIamPolicy only:

    Condition AccountIamMemberCondition
    BillingAccountId string

    The billing account id.

    For gcp.billing.AccountIamMember or gcp.billing.AccountIamBinding:

    Member string
    Identities that will be granted the privilege in role. Each entry can have one of the following values:

    • user:{emailid}: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
    • serviceAccount:{emailid}: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
    • group:{emailid}: An email address that represents a Google group. For example, admins@example.com.
    • domain:{domain}: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
    Role string

    The role that should be applied. Only one gcp.billing.AccountIamBinding can be used per role. Note that custom roles must be of the format [projects|organizations]/{parent-name}/roles/{role-name}. Read more about roles here.

    gcp.billing.AccountIamPolicy only:

    Condition AccountIamMemberConditionArgs
    billingAccountId String

    The billing account id.

    For gcp.billing.AccountIamMember or gcp.billing.AccountIamBinding:

    member String
    Identities that will be granted the privilege in role. Each entry can have one of the following values:

    • user:{emailid}: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
    • serviceAccount:{emailid}: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
    • group:{emailid}: An email address that represents a Google group. For example, admins@example.com.
    • domain:{domain}: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
    role String

    The role that should be applied. Only one gcp.billing.AccountIamBinding can be used per role. Note that custom roles must be of the format [projects|organizations]/{parent-name}/roles/{role-name}. Read more about roles here.

    gcp.billing.AccountIamPolicy only:

    condition AccountIamMemberCondition
    billingAccountId string

    The billing account id.

    For gcp.billing.AccountIamMember or gcp.billing.AccountIamBinding:

    member string
    Identities that will be granted the privilege in role. Each entry can have one of the following values:

    • user:{emailid}: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
    • serviceAccount:{emailid}: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
    • group:{emailid}: An email address that represents a Google group. For example, admins@example.com.
    • domain:{domain}: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
    role string

    The role that should be applied. Only one gcp.billing.AccountIamBinding can be used per role. Note that custom roles must be of the format [projects|organizations]/{parent-name}/roles/{role-name}. Read more about roles here.

    gcp.billing.AccountIamPolicy only:

    condition AccountIamMemberCondition
    billing_account_id str

    The billing account id.

    For gcp.billing.AccountIamMember or gcp.billing.AccountIamBinding:

    member str
    Identities that will be granted the privilege in role. Each entry can have one of the following values:

    • user:{emailid}: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
    • serviceAccount:{emailid}: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
    • group:{emailid}: An email address that represents a Google group. For example, admins@example.com.
    • domain:{domain}: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
    role str

    The role that should be applied. Only one gcp.billing.AccountIamBinding can be used per role. Note that custom roles must be of the format [projects|organizations]/{parent-name}/roles/{role-name}. Read more about roles here.

    gcp.billing.AccountIamPolicy only:

    condition AccountIamMemberConditionArgs
    billingAccountId String

    The billing account id.

    For gcp.billing.AccountIamMember or gcp.billing.AccountIamBinding:

    member String
    Identities that will be granted the privilege in role. Each entry can have one of the following values:

    • user:{emailid}: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
    • serviceAccount:{emailid}: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
    • group:{emailid}: An email address that represents a Google group. For example, admins@example.com.
    • domain:{domain}: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
    role String

    The role that should be applied. Only one gcp.billing.AccountIamBinding can be used per role. Note that custom roles must be of the format [projects|organizations]/{parent-name}/roles/{role-name}. Read more about roles here.

    gcp.billing.AccountIamPolicy only:

    condition Property Map

    Outputs

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

    Etag string
    (Computed) The etag of the billing account's IAM policy.
    Id string
    The provider-assigned unique ID for this managed resource.
    Etag string
    (Computed) The etag of the billing account's IAM policy.
    Id string
    The provider-assigned unique ID for this managed resource.
    etag String
    (Computed) The etag of the billing account's IAM policy.
    id String
    The provider-assigned unique ID for this managed resource.
    etag string
    (Computed) The etag of the billing account's IAM policy.
    id string
    The provider-assigned unique ID for this managed resource.
    etag str
    (Computed) The etag of the billing account's IAM policy.
    id str
    The provider-assigned unique ID for this managed resource.
    etag String
    (Computed) The etag of the billing account's IAM policy.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing AccountIamMember Resource

    Get an existing AccountIamMember 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?: AccountIamMemberState, opts?: CustomResourceOptions): AccountIamMember
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            billing_account_id: Optional[str] = None,
            condition: Optional[AccountIamMemberConditionArgs] = None,
            etag: Optional[str] = None,
            member: Optional[str] = None,
            role: Optional[str] = None) -> AccountIamMember
    func GetAccountIamMember(ctx *Context, name string, id IDInput, state *AccountIamMemberState, opts ...ResourceOption) (*AccountIamMember, error)
    public static AccountIamMember Get(string name, Input<string> id, AccountIamMemberState? state, CustomResourceOptions? opts = null)
    public static AccountIamMember get(String name, Output<String> id, AccountIamMemberState 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:
    BillingAccountId string

    The billing account id.

    For gcp.billing.AccountIamMember or gcp.billing.AccountIamBinding:

    Condition AccountIamMemberCondition
    Etag string
    (Computed) The etag of the billing account's IAM policy.
    Member string
    Identities that will be granted the privilege in role. Each entry can have one of the following values:

    • user:{emailid}: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
    • serviceAccount:{emailid}: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
    • group:{emailid}: An email address that represents a Google group. For example, admins@example.com.
    • domain:{domain}: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
    Role string

    The role that should be applied. Only one gcp.billing.AccountIamBinding can be used per role. Note that custom roles must be of the format [projects|organizations]/{parent-name}/roles/{role-name}. Read more about roles here.

    gcp.billing.AccountIamPolicy only:

    BillingAccountId string

    The billing account id.

    For gcp.billing.AccountIamMember or gcp.billing.AccountIamBinding:

    Condition AccountIamMemberConditionArgs
    Etag string
    (Computed) The etag of the billing account's IAM policy.
    Member string
    Identities that will be granted the privilege in role. Each entry can have one of the following values:

    • user:{emailid}: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
    • serviceAccount:{emailid}: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
    • group:{emailid}: An email address that represents a Google group. For example, admins@example.com.
    • domain:{domain}: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
    Role string

    The role that should be applied. Only one gcp.billing.AccountIamBinding can be used per role. Note that custom roles must be of the format [projects|organizations]/{parent-name}/roles/{role-name}. Read more about roles here.

    gcp.billing.AccountIamPolicy only:

    billingAccountId String

    The billing account id.

    For gcp.billing.AccountIamMember or gcp.billing.AccountIamBinding:

    condition AccountIamMemberCondition
    etag String
    (Computed) The etag of the billing account's IAM policy.
    member String
    Identities that will be granted the privilege in role. Each entry can have one of the following values:

    • user:{emailid}: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
    • serviceAccount:{emailid}: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
    • group:{emailid}: An email address that represents a Google group. For example, admins@example.com.
    • domain:{domain}: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
    role String

    The role that should be applied. Only one gcp.billing.AccountIamBinding can be used per role. Note that custom roles must be of the format [projects|organizations]/{parent-name}/roles/{role-name}. Read more about roles here.

    gcp.billing.AccountIamPolicy only:

    billingAccountId string

    The billing account id.

    For gcp.billing.AccountIamMember or gcp.billing.AccountIamBinding:

    condition AccountIamMemberCondition
    etag string
    (Computed) The etag of the billing account's IAM policy.
    member string
    Identities that will be granted the privilege in role. Each entry can have one of the following values:

    • user:{emailid}: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
    • serviceAccount:{emailid}: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
    • group:{emailid}: An email address that represents a Google group. For example, admins@example.com.
    • domain:{domain}: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
    role string

    The role that should be applied. Only one gcp.billing.AccountIamBinding can be used per role. Note that custom roles must be of the format [projects|organizations]/{parent-name}/roles/{role-name}. Read more about roles here.

    gcp.billing.AccountIamPolicy only:

    billing_account_id str

    The billing account id.

    For gcp.billing.AccountIamMember or gcp.billing.AccountIamBinding:

    condition AccountIamMemberConditionArgs
    etag str
    (Computed) The etag of the billing account's IAM policy.
    member str
    Identities that will be granted the privilege in role. Each entry can have one of the following values:

    • user:{emailid}: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
    • serviceAccount:{emailid}: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
    • group:{emailid}: An email address that represents a Google group. For example, admins@example.com.
    • domain:{domain}: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
    role str

    The role that should be applied. Only one gcp.billing.AccountIamBinding can be used per role. Note that custom roles must be of the format [projects|organizations]/{parent-name}/roles/{role-name}. Read more about roles here.

    gcp.billing.AccountIamPolicy only:

    billingAccountId String

    The billing account id.

    For gcp.billing.AccountIamMember or gcp.billing.AccountIamBinding:

    condition Property Map
    etag String
    (Computed) The etag of the billing account's IAM policy.
    member String
    Identities that will be granted the privilege in role. Each entry can have one of the following values:

    • user:{emailid}: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
    • serviceAccount:{emailid}: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
    • group:{emailid}: An email address that represents a Google group. For example, admins@example.com.
    • domain:{domain}: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
    role String

    The role that should be applied. Only one gcp.billing.AccountIamBinding can be used per role. Note that custom roles must be of the format [projects|organizations]/{parent-name}/roles/{role-name}. Read more about roles here.

    gcp.billing.AccountIamPolicy only:

    Supporting Types

    AccountIamMemberCondition, AccountIamMemberConditionArgs

    Expression string
    Title string
    Description string
    Expression string
    Title string
    Description string
    expression String
    title String
    description String
    expression string
    title string
    description string
    expression String
    title String
    description String

    Import

    Importing IAM policies

    IAM policy imports use the billing_account_id identifier of the Billing Account resource only. For example:

    • {{billing_account_id}}

    An import block (Terraform v1.5.0 and later) can be used to import IAM policies:

    tf

    import {

    id = {{billing_account_id}}

    to = google_billing_account_iam_policy.default

    }

    The pulumi import command can also be used:

    $ pulumi import gcp:billing/accountIamMember:AccountIamMember default {{billing_account_id}}
    

    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.
    gcp logo
    Google Cloud Classic v7.19.0 published on Thursday, Apr 18, 2024 by Pulumi