AccountMember

Provides a resource which manages Cloudflare account members.

Example Usage

using Pulumi;
using Cloudflare = Pulumi.Cloudflare;

class MyStack : Stack
{
    public MyStack()
    {
        var exampleUser = new Cloudflare.AccountMember("exampleUser", new Cloudflare.AccountMemberArgs
        {
            EmailAddress = "user@example.com",
            RoleIds = 
            {
                "68b329da9893e34099c7d8ad5cb9c940",
                "d784fa8b6d98d27699781bd9a7cf19f0",
            },
        });
    }

}

Coming soon!

import pulumi
import pulumi_cloudflare as cloudflare

example_user = cloudflare.AccountMember("exampleUser",
    email_address="user@example.com",
    role_ids=[
        "68b329da9893e34099c7d8ad5cb9c940",
        "d784fa8b6d98d27699781bd9a7cf19f0",
    ])
import * as pulumi from "@pulumi/pulumi";
import * as cloudflare from "@pulumi/cloudflare";

const exampleUser = new cloudflare.AccountMember("example_user", {
    emailAddress: "user@example.com",
    roleIds: [
        "68b329da9893e34099c7d8ad5cb9c940",
        "d784fa8b6d98d27699781bd9a7cf19f0",
    ],
});

Create a AccountMember Resource

def AccountMember(resource_name, opts=None, email_address=None, role_ids=None, __props__=None);
name string
The unique name of the resource.
args AccountMemberArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name str
The unique name of the resource.
opts ResourceOptions
A bag of options that control this resource's behavior.
ctx Context
Context object for the current deployment.
name string
The unique name of the resource.
args AccountMemberArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args AccountMemberArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.

AccountMember Resource Properties

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

Inputs

The AccountMember resource accepts the following input properties:

EmailAddress string

The email address of the user who you wish to manage. Note: Following creation, this field becomes read only via the API and cannot be updated.

RoleIds List<string>

Array of account role IDs that you want to assign to a member.

EmailAddress string

The email address of the user who you wish to manage. Note: Following creation, this field becomes read only via the API and cannot be updated.

RoleIds []string

Array of account role IDs that you want to assign to a member.

emailAddress string

The email address of the user who you wish to manage. Note: Following creation, this field becomes read only via the API and cannot be updated.

roleIds string[]

Array of account role IDs that you want to assign to a member.

email_address str

The email address of the user who you wish to manage. Note: Following creation, this field becomes read only via the API and cannot be updated.

role_ids List[str]

Array of account role IDs that you want to assign to a member.

Outputs

All input properties are implicitly available as output properties. Additionally, the AccountMember 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 str
The provider-assigned unique ID for this managed resource.

Look up an Existing AccountMember Resource

Get an existing AccountMember 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?: AccountMemberState, opts?: CustomResourceOptions): AccountMember
static get(resource_name, id, opts=None, email_address=None, role_ids=None, __props__=None);
func GetAccountMember(ctx *Context, name string, id IDInput, state *AccountMemberState, opts ...ResourceOption) (*AccountMember, error)
public static AccountMember Get(string name, Input<string> id, AccountMemberState? state, CustomResourceOptions? opts = null)
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.

The following state arguments are supported:

EmailAddress string

The email address of the user who you wish to manage. Note: Following creation, this field becomes read only via the API and cannot be updated.

RoleIds List<string>

Array of account role IDs that you want to assign to a member.

EmailAddress string

The email address of the user who you wish to manage. Note: Following creation, this field becomes read only via the API and cannot be updated.

RoleIds []string

Array of account role IDs that you want to assign to a member.

emailAddress string

The email address of the user who you wish to manage. Note: Following creation, this field becomes read only via the API and cannot be updated.

roleIds string[]

Array of account role IDs that you want to assign to a member.

email_address str

The email address of the user who you wish to manage. Note: Following creation, this field becomes read only via the API and cannot be updated.

role_ids List[str]

Array of account role IDs that you want to assign to a member.

Package Details

Repository
https://github.com/pulumi/pulumi-cloudflare
License
Apache-2.0
Notes
This Pulumi package is based on the cloudflare Terraform Provider.