1. Packages
  2. Auth0
  3. API Docs
  4. OrganizationMembers
Auth0 v3.3.1 published on Thursday, Mar 14, 2024 by Pulumi

auth0.OrganizationMembers

Explore with Pulumi AI

auth0 logo
Auth0 v3.3.1 published on Thursday, Mar 14, 2024 by Pulumi

    This resource is used to manage members of an organization.

    !> This resource manages all the members assigned to an organization. In contrast, the auth0.OrganizationMember resource only appends a member to an organization. To avoid potential issues, it is recommended not to use this resource in conjunction with the auth0.OrganizationMember resource when managing members for the same organization id.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as auth0 from "@pulumi/auth0";
    
    const user1 = new auth0.User("user1", {
        connectionName: "Username-Password-Authentication",
        email: "myuser1@auth0.com",
        password: "MyPass123$",
    });
    const user2 = new auth0.User("user2", {
        connectionName: "Username-Password-Authentication",
        email: "myuser2@auth0.com",
        password: "MyPass123$",
    });
    const myOrg = new auth0.Organization("myOrg", {displayName: "Some Organization"});
    const myMembers = new auth0.OrganizationMembers("myMembers", {
        organizationId: myOrg.id,
        members: [
            user1.id,
            user2.id,
        ],
    });
    
    import pulumi
    import pulumi_auth0 as auth0
    
    user1 = auth0.User("user1",
        connection_name="Username-Password-Authentication",
        email="myuser1@auth0.com",
        password="MyPass123$")
    user2 = auth0.User("user2",
        connection_name="Username-Password-Authentication",
        email="myuser2@auth0.com",
        password="MyPass123$")
    my_org = auth0.Organization("myOrg", display_name="Some Organization")
    my_members = auth0.OrganizationMembers("myMembers",
        organization_id=my_org.id,
        members=[
            user1.id,
            user2.id,
        ])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-auth0/sdk/v3/go/auth0"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		user1, err := auth0.NewUser(ctx, "user1", &auth0.UserArgs{
    			ConnectionName: pulumi.String("Username-Password-Authentication"),
    			Email:          pulumi.String("myuser1@auth0.com"),
    			Password:       pulumi.String("MyPass123$"),
    		})
    		if err != nil {
    			return err
    		}
    		user2, err := auth0.NewUser(ctx, "user2", &auth0.UserArgs{
    			ConnectionName: pulumi.String("Username-Password-Authentication"),
    			Email:          pulumi.String("myuser2@auth0.com"),
    			Password:       pulumi.String("MyPass123$"),
    		})
    		if err != nil {
    			return err
    		}
    		myOrg, err := auth0.NewOrganization(ctx, "myOrg", &auth0.OrganizationArgs{
    			DisplayName: pulumi.String("Some Organization"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = auth0.NewOrganizationMembers(ctx, "myMembers", &auth0.OrganizationMembersArgs{
    			OrganizationId: myOrg.ID(),
    			Members: pulumi.StringArray{
    				user1.ID(),
    				user2.ID(),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Auth0 = Pulumi.Auth0;
    
    return await Deployment.RunAsync(() => 
    {
        var user1 = new Auth0.User("user1", new()
        {
            ConnectionName = "Username-Password-Authentication",
            Email = "myuser1@auth0.com",
            Password = "MyPass123$",
        });
    
        var user2 = new Auth0.User("user2", new()
        {
            ConnectionName = "Username-Password-Authentication",
            Email = "myuser2@auth0.com",
            Password = "MyPass123$",
        });
    
        var myOrg = new Auth0.Organization("myOrg", new()
        {
            DisplayName = "Some Organization",
        });
    
        var myMembers = new Auth0.OrganizationMembers("myMembers", new()
        {
            OrganizationId = myOrg.Id,
            Members = new[]
            {
                user1.Id,
                user2.Id,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.auth0.User;
    import com.pulumi.auth0.UserArgs;
    import com.pulumi.auth0.Organization;
    import com.pulumi.auth0.OrganizationArgs;
    import com.pulumi.auth0.OrganizationMembers;
    import com.pulumi.auth0.OrganizationMembersArgs;
    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 user1 = new User("user1", UserArgs.builder()        
                .connectionName("Username-Password-Authentication")
                .email("myuser1@auth0.com")
                .password("MyPass123$")
                .build());
    
            var user2 = new User("user2", UserArgs.builder()        
                .connectionName("Username-Password-Authentication")
                .email("myuser2@auth0.com")
                .password("MyPass123$")
                .build());
    
            var myOrg = new Organization("myOrg", OrganizationArgs.builder()        
                .displayName("Some Organization")
                .build());
    
            var myMembers = new OrganizationMembers("myMembers", OrganizationMembersArgs.builder()        
                .organizationId(myOrg.id())
                .members(            
                    user1.id(),
                    user2.id())
                .build());
    
        }
    }
    
    resources:
      user1:
        type: auth0:User
        properties:
          connectionName: Username-Password-Authentication
          email: myuser1@auth0.com
          password: MyPass123$
      user2:
        type: auth0:User
        properties:
          connectionName: Username-Password-Authentication
          email: myuser2@auth0.com
          password: MyPass123$
      myOrg:
        type: auth0:Organization
        properties:
          displayName: Some Organization
      myMembers:
        type: auth0:OrganizationMembers
        properties:
          organizationId: ${myOrg.id}
          members:
            - ${user1.id}
            - ${user2.id}
    

    Create OrganizationMembers Resource

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

    Constructor syntax

    new OrganizationMembers(name: string, args: OrganizationMembersArgs, opts?: CustomResourceOptions);
    @overload
    def OrganizationMembers(resource_name: str,
                            args: OrganizationMembersArgs,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def OrganizationMembers(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            members: Optional[Sequence[str]] = None,
                            organization_id: Optional[str] = None)
    func NewOrganizationMembers(ctx *Context, name string, args OrganizationMembersArgs, opts ...ResourceOption) (*OrganizationMembers, error)
    public OrganizationMembers(string name, OrganizationMembersArgs args, CustomResourceOptions? opts = null)
    public OrganizationMembers(String name, OrganizationMembersArgs args)
    public OrganizationMembers(String name, OrganizationMembersArgs args, CustomResourceOptions options)
    
    type: auth0:OrganizationMembers
    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 OrganizationMembersArgs
    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 OrganizationMembersArgs
    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 OrganizationMembersArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args OrganizationMembersArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args OrganizationMembersArgs
    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 organizationMembersResource = new Auth0.OrganizationMembers("organizationMembersResource", new()
    {
        Members = new[]
        {
            "string",
        },
        OrganizationId = "string",
    });
    
    example, err := auth0.NewOrganizationMembers(ctx, "organizationMembersResource", &auth0.OrganizationMembersArgs{
    	Members: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	OrganizationId: pulumi.String("string"),
    })
    
    var organizationMembersResource = new OrganizationMembers("organizationMembersResource", OrganizationMembersArgs.builder()        
        .members("string")
        .organizationId("string")
        .build());
    
    organization_members_resource = auth0.OrganizationMembers("organizationMembersResource",
        members=["string"],
        organization_id="string")
    
    const organizationMembersResource = new auth0.OrganizationMembers("organizationMembersResource", {
        members: ["string"],
        organizationId: "string",
    });
    
    type: auth0:OrganizationMembers
    properties:
        members:
            - string
        organizationId: string
    

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

    Members List<string>
    Add user ID(s) directly from the tenant to become members of the organization.
    OrganizationId string
    The ID of the organization to assign the members to.
    Members []string
    Add user ID(s) directly from the tenant to become members of the organization.
    OrganizationId string
    The ID of the organization to assign the members to.
    members List<String>
    Add user ID(s) directly from the tenant to become members of the organization.
    organizationId String
    The ID of the organization to assign the members to.
    members string[]
    Add user ID(s) directly from the tenant to become members of the organization.
    organizationId string
    The ID of the organization to assign the members to.
    members Sequence[str]
    Add user ID(s) directly from the tenant to become members of the organization.
    organization_id str
    The ID of the organization to assign the members to.
    members List<String>
    Add user ID(s) directly from the tenant to become members of the organization.
    organizationId String
    The ID of the organization to assign the members to.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the OrganizationMembers 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 OrganizationMembers Resource

    Get an existing OrganizationMembers 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?: OrganizationMembersState, opts?: CustomResourceOptions): OrganizationMembers
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            members: Optional[Sequence[str]] = None,
            organization_id: Optional[str] = None) -> OrganizationMembers
    func GetOrganizationMembers(ctx *Context, name string, id IDInput, state *OrganizationMembersState, opts ...ResourceOption) (*OrganizationMembers, error)
    public static OrganizationMembers Get(string name, Input<string> id, OrganizationMembersState? state, CustomResourceOptions? opts = null)
    public static OrganizationMembers get(String name, Output<String> id, OrganizationMembersState 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:
    Members List<string>
    Add user ID(s) directly from the tenant to become members of the organization.
    OrganizationId string
    The ID of the organization to assign the members to.
    Members []string
    Add user ID(s) directly from the tenant to become members of the organization.
    OrganizationId string
    The ID of the organization to assign the members to.
    members List<String>
    Add user ID(s) directly from the tenant to become members of the organization.
    organizationId String
    The ID of the organization to assign the members to.
    members string[]
    Add user ID(s) directly from the tenant to become members of the organization.
    organizationId string
    The ID of the organization to assign the members to.
    members Sequence[str]
    Add user ID(s) directly from the tenant to become members of the organization.
    organization_id str
    The ID of the organization to assign the members to.
    members List<String>
    Add user ID(s) directly from the tenant to become members of the organization.
    organizationId String
    The ID of the organization to assign the members to.

    Import

    This resource can be imported by specifying the organization ID.

    Example:

    $ pulumi import auth0:index/organizationMembers:OrganizationMembers my_org_members "org_XXXXX"
    

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

    Package Details

    Repository
    Auth0 pulumi/pulumi-auth0
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the auth0 Terraform Provider.
    auth0 logo
    Auth0 v3.3.1 published on Thursday, Mar 14, 2024 by Pulumi