1. Packages
  2. Ibm Provider
  3. API Docs
  4. EnterpriseAccountGroup
ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud

ibm.EnterpriseAccountGroup

Explore with Pulumi AI

ibm logo
ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud

    Create and update and delete enterprise_account_groupresource. For more information, about enterprise account group, refer to setting up access groups.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as ibm from "@pulumi/ibm";
    
    const enterpriseAccountGroup = new ibm.EnterpriseAccountGroup("enterpriseAccountGroup", {
        parent: "parent",
        primaryContactIamId: "primary_contact_iam_id",
    });
    
    import pulumi
    import pulumi_ibm as ibm
    
    enterprise_account_group = ibm.EnterpriseAccountGroup("enterpriseAccountGroup",
        parent="parent",
        primary_contact_iam_id="primary_contact_iam_id")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/ibm/ibm"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := ibm.NewEnterpriseAccountGroup(ctx, "enterpriseAccountGroup", &ibm.EnterpriseAccountGroupArgs{
    			Parent:              pulumi.String("parent"),
    			PrimaryContactIamId: pulumi.String("primary_contact_iam_id"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Ibm = Pulumi.Ibm;
    
    return await Deployment.RunAsync(() => 
    {
        var enterpriseAccountGroup = new Ibm.EnterpriseAccountGroup("enterpriseAccountGroup", new()
        {
            Parent = "parent",
            PrimaryContactIamId = "primary_contact_iam_id",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.ibm.EnterpriseAccountGroup;
    import com.pulumi.ibm.EnterpriseAccountGroupArgs;
    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 enterpriseAccountGroup = new EnterpriseAccountGroup("enterpriseAccountGroup", EnterpriseAccountGroupArgs.builder()
                .parent("parent")
                .primaryContactIamId("primary_contact_iam_id")
                .build());
    
        }
    }
    
    resources:
      enterpriseAccountGroup:
        type: ibm:EnterpriseAccountGroup
        properties:
          parent: parent
          primaryContactIamId: primary_contact_iam_id
    

    Create EnterpriseAccountGroup Resource

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

    Constructor syntax

    new EnterpriseAccountGroup(name: string, args: EnterpriseAccountGroupArgs, opts?: CustomResourceOptions);
    @overload
    def EnterpriseAccountGroup(resource_name: str,
                               args: EnterpriseAccountGroupArgs,
                               opts: Optional[ResourceOptions] = None)
    
    @overload
    def EnterpriseAccountGroup(resource_name: str,
                               opts: Optional[ResourceOptions] = None,
                               parent: Optional[str] = None,
                               primary_contact_iam_id: Optional[str] = None,
                               enterprise_account_group_id: Optional[str] = None,
                               name: Optional[str] = None,
                               timeouts: Optional[EnterpriseAccountGroupTimeoutsArgs] = None)
    func NewEnterpriseAccountGroup(ctx *Context, name string, args EnterpriseAccountGroupArgs, opts ...ResourceOption) (*EnterpriseAccountGroup, error)
    public EnterpriseAccountGroup(string name, EnterpriseAccountGroupArgs args, CustomResourceOptions? opts = null)
    public EnterpriseAccountGroup(String name, EnterpriseAccountGroupArgs args)
    public EnterpriseAccountGroup(String name, EnterpriseAccountGroupArgs args, CustomResourceOptions options)
    
    type: ibm:EnterpriseAccountGroup
    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 EnterpriseAccountGroupArgs
    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 EnterpriseAccountGroupArgs
    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 EnterpriseAccountGroupArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args EnterpriseAccountGroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args EnterpriseAccountGroupArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

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

    var enterpriseAccountGroupResource = new Ibm.EnterpriseAccountGroup("enterpriseAccountGroupResource", new()
    {
        Parent = "string",
        PrimaryContactIamId = "string",
        EnterpriseAccountGroupId = "string",
        Name = "string",
        Timeouts = new Ibm.Inputs.EnterpriseAccountGroupTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Update = "string",
        },
    });
    
    example, err := ibm.NewEnterpriseAccountGroup(ctx, "enterpriseAccountGroupResource", &ibm.EnterpriseAccountGroupArgs{
    	Parent:                   pulumi.String("string"),
    	PrimaryContactIamId:      pulumi.String("string"),
    	EnterpriseAccountGroupId: pulumi.String("string"),
    	Name:                     pulumi.String("string"),
    	Timeouts: &ibm.EnterpriseAccountGroupTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    		Update: pulumi.String("string"),
    	},
    })
    
    var enterpriseAccountGroupResource = new EnterpriseAccountGroup("enterpriseAccountGroupResource", EnterpriseAccountGroupArgs.builder()
        .parent("string")
        .primaryContactIamId("string")
        .enterpriseAccountGroupId("string")
        .name("string")
        .timeouts(EnterpriseAccountGroupTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .update("string")
            .build())
        .build());
    
    enterprise_account_group_resource = ibm.EnterpriseAccountGroup("enterpriseAccountGroupResource",
        parent="string",
        primary_contact_iam_id="string",
        enterprise_account_group_id="string",
        name="string",
        timeouts={
            "create": "string",
            "delete": "string",
            "update": "string",
        })
    
    const enterpriseAccountGroupResource = new ibm.EnterpriseAccountGroup("enterpriseAccountGroupResource", {
        parent: "string",
        primaryContactIamId: "string",
        enterpriseAccountGroupId: "string",
        name: "string",
        timeouts: {
            create: "string",
            "delete": "string",
            update: "string",
        },
    });
    
    type: ibm:EnterpriseAccountGroup
    properties:
        enterpriseAccountGroupId: string
        name: string
        parent: string
        primaryContactIamId: string
        timeouts:
            create: string
            delete: string
            update: string
    

    EnterpriseAccountGroup Resource Properties

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

    Inputs

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

    The EnterpriseAccountGroup resource accepts the following input properties:

    Parent string
    The CRN of the parent in which the account group is created. The parent can be an existing account group or an enterprise itself.
    PrimaryContactIamId string
    The IAM ID of an enterprise primary contact, such as IBMid-0123ABC. The IAM ID must already exist.
    EnterpriseAccountGroupId string
    (String) The unique identifier of an enterprise account group.
    Name string
    The name of an enterprise. The minimum and maximum character should be from 3 to 60 characters.
    Timeouts EnterpriseAccountGroupTimeouts
    Parent string
    The CRN of the parent in which the account group is created. The parent can be an existing account group or an enterprise itself.
    PrimaryContactIamId string
    The IAM ID of an enterprise primary contact, such as IBMid-0123ABC. The IAM ID must already exist.
    EnterpriseAccountGroupId string
    (String) The unique identifier of an enterprise account group.
    Name string
    The name of an enterprise. The minimum and maximum character should be from 3 to 60 characters.
    Timeouts EnterpriseAccountGroupTimeoutsArgs
    parent String
    The CRN of the parent in which the account group is created. The parent can be an existing account group or an enterprise itself.
    primaryContactIamId String
    The IAM ID of an enterprise primary contact, such as IBMid-0123ABC. The IAM ID must already exist.
    enterpriseAccountGroupId String
    (String) The unique identifier of an enterprise account group.
    name String
    The name of an enterprise. The minimum and maximum character should be from 3 to 60 characters.
    timeouts EnterpriseAccountGroupTimeouts
    parent string
    The CRN of the parent in which the account group is created. The parent can be an existing account group or an enterprise itself.
    primaryContactIamId string
    The IAM ID of an enterprise primary contact, such as IBMid-0123ABC. The IAM ID must already exist.
    enterpriseAccountGroupId string
    (String) The unique identifier of an enterprise account group.
    name string
    The name of an enterprise. The minimum and maximum character should be from 3 to 60 characters.
    timeouts EnterpriseAccountGroupTimeouts
    parent str
    The CRN of the parent in which the account group is created. The parent can be an existing account group or an enterprise itself.
    primary_contact_iam_id str
    The IAM ID of an enterprise primary contact, such as IBMid-0123ABC. The IAM ID must already exist.
    enterprise_account_group_id str
    (String) The unique identifier of an enterprise account group.
    name str
    The name of an enterprise. The minimum and maximum character should be from 3 to 60 characters.
    timeouts EnterpriseAccountGroupTimeoutsArgs
    parent String
    The CRN of the parent in which the account group is created. The parent can be an existing account group or an enterprise itself.
    primaryContactIamId String
    The IAM ID of an enterprise primary contact, such as IBMid-0123ABC. The IAM ID must already exist.
    enterpriseAccountGroupId String
    (String) The unique identifier of an enterprise account group.
    name String
    The name of an enterprise. The minimum and maximum character should be from 3 to 60 characters.
    timeouts Property Map

    Outputs

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

    CreatedAt string
    (Timestamp) The time stamp at which an account group is created.
    CreatedBy string
    (String) The IAM ID of an user or service that created an account group.
    Crn string
    (String) The Cloud Resource Name (CRN) of an account group.
    EnterpriseAccountId string
    (String) The enterprise account ID.
    EnterpriseId string
    (String) The enterprise ID that the account group is a part of.
    EnterprisePath string
    (String) The path from the enterprise to the particular account group.
    Id string
    The provider-assigned unique ID for this managed resource.
    PrimaryContactEmail string
    (String) The Email address of the primary contact of an account group.
    State string
    (String) The state of an account group.
    UpdatedAt string
    (Timestamp) The time stamp at which an account group was last updated.
    UpdatedBy string
    (String) The IAM ID of the user or service that updated an account group.
    Url string
    (String) The URL of an account group.
    CreatedAt string
    (Timestamp) The time stamp at which an account group is created.
    CreatedBy string
    (String) The IAM ID of an user or service that created an account group.
    Crn string
    (String) The Cloud Resource Name (CRN) of an account group.
    EnterpriseAccountId string
    (String) The enterprise account ID.
    EnterpriseId string
    (String) The enterprise ID that the account group is a part of.
    EnterprisePath string
    (String) The path from the enterprise to the particular account group.
    Id string
    The provider-assigned unique ID for this managed resource.
    PrimaryContactEmail string
    (String) The Email address of the primary contact of an account group.
    State string
    (String) The state of an account group.
    UpdatedAt string
    (Timestamp) The time stamp at which an account group was last updated.
    UpdatedBy string
    (String) The IAM ID of the user or service that updated an account group.
    Url string
    (String) The URL of an account group.
    createdAt String
    (Timestamp) The time stamp at which an account group is created.
    createdBy String
    (String) The IAM ID of an user or service that created an account group.
    crn String
    (String) The Cloud Resource Name (CRN) of an account group.
    enterpriseAccountId String
    (String) The enterprise account ID.
    enterpriseId String
    (String) The enterprise ID that the account group is a part of.
    enterprisePath String
    (String) The path from the enterprise to the particular account group.
    id String
    The provider-assigned unique ID for this managed resource.
    primaryContactEmail String
    (String) The Email address of the primary contact of an account group.
    state String
    (String) The state of an account group.
    updatedAt String
    (Timestamp) The time stamp at which an account group was last updated.
    updatedBy String
    (String) The IAM ID of the user or service that updated an account group.
    url String
    (String) The URL of an account group.
    createdAt string
    (Timestamp) The time stamp at which an account group is created.
    createdBy string
    (String) The IAM ID of an user or service that created an account group.
    crn string
    (String) The Cloud Resource Name (CRN) of an account group.
    enterpriseAccountId string
    (String) The enterprise account ID.
    enterpriseId string
    (String) The enterprise ID that the account group is a part of.
    enterprisePath string
    (String) The path from the enterprise to the particular account group.
    id string
    The provider-assigned unique ID for this managed resource.
    primaryContactEmail string
    (String) The Email address of the primary contact of an account group.
    state string
    (String) The state of an account group.
    updatedAt string
    (Timestamp) The time stamp at which an account group was last updated.
    updatedBy string
    (String) The IAM ID of the user or service that updated an account group.
    url string
    (String) The URL of an account group.
    created_at str
    (Timestamp) The time stamp at which an account group is created.
    created_by str
    (String) The IAM ID of an user or service that created an account group.
    crn str
    (String) The Cloud Resource Name (CRN) of an account group.
    enterprise_account_id str
    (String) The enterprise account ID.
    enterprise_id str
    (String) The enterprise ID that the account group is a part of.
    enterprise_path str
    (String) The path from the enterprise to the particular account group.
    id str
    The provider-assigned unique ID for this managed resource.
    primary_contact_email str
    (String) The Email address of the primary contact of an account group.
    state str
    (String) The state of an account group.
    updated_at str
    (Timestamp) The time stamp at which an account group was last updated.
    updated_by str
    (String) The IAM ID of the user or service that updated an account group.
    url str
    (String) The URL of an account group.
    createdAt String
    (Timestamp) The time stamp at which an account group is created.
    createdBy String
    (String) The IAM ID of an user or service that created an account group.
    crn String
    (String) The Cloud Resource Name (CRN) of an account group.
    enterpriseAccountId String
    (String) The enterprise account ID.
    enterpriseId String
    (String) The enterprise ID that the account group is a part of.
    enterprisePath String
    (String) The path from the enterprise to the particular account group.
    id String
    The provider-assigned unique ID for this managed resource.
    primaryContactEmail String
    (String) The Email address of the primary contact of an account group.
    state String
    (String) The state of an account group.
    updatedAt String
    (Timestamp) The time stamp at which an account group was last updated.
    updatedBy String
    (String) The IAM ID of the user or service that updated an account group.
    url String
    (String) The URL of an account group.

    Look up Existing EnterpriseAccountGroup Resource

    Get an existing EnterpriseAccountGroup 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?: EnterpriseAccountGroupState, opts?: CustomResourceOptions): EnterpriseAccountGroup
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            created_at: Optional[str] = None,
            created_by: Optional[str] = None,
            crn: Optional[str] = None,
            enterprise_account_group_id: Optional[str] = None,
            enterprise_account_id: Optional[str] = None,
            enterprise_id: Optional[str] = None,
            enterprise_path: Optional[str] = None,
            name: Optional[str] = None,
            parent: Optional[str] = None,
            primary_contact_email: Optional[str] = None,
            primary_contact_iam_id: Optional[str] = None,
            state: Optional[str] = None,
            timeouts: Optional[EnterpriseAccountGroupTimeoutsArgs] = None,
            updated_at: Optional[str] = None,
            updated_by: Optional[str] = None,
            url: Optional[str] = None) -> EnterpriseAccountGroup
    func GetEnterpriseAccountGroup(ctx *Context, name string, id IDInput, state *EnterpriseAccountGroupState, opts ...ResourceOption) (*EnterpriseAccountGroup, error)
    public static EnterpriseAccountGroup Get(string name, Input<string> id, EnterpriseAccountGroupState? state, CustomResourceOptions? opts = null)
    public static EnterpriseAccountGroup get(String name, Output<String> id, EnterpriseAccountGroupState state, CustomResourceOptions options)
    resources:  _:    type: ibm:EnterpriseAccountGroup    get:      id: ${id}
    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:
    CreatedAt string
    (Timestamp) The time stamp at which an account group is created.
    CreatedBy string
    (String) The IAM ID of an user or service that created an account group.
    Crn string
    (String) The Cloud Resource Name (CRN) of an account group.
    EnterpriseAccountGroupId string
    (String) The unique identifier of an enterprise account group.
    EnterpriseAccountId string
    (String) The enterprise account ID.
    EnterpriseId string
    (String) The enterprise ID that the account group is a part of.
    EnterprisePath string
    (String) The path from the enterprise to the particular account group.
    Name string
    The name of an enterprise. The minimum and maximum character should be from 3 to 60 characters.
    Parent string
    The CRN of the parent in which the account group is created. The parent can be an existing account group or an enterprise itself.
    PrimaryContactEmail string
    (String) The Email address of the primary contact of an account group.
    PrimaryContactIamId string
    The IAM ID of an enterprise primary contact, such as IBMid-0123ABC. The IAM ID must already exist.
    State string
    (String) The state of an account group.
    Timeouts EnterpriseAccountGroupTimeouts
    UpdatedAt string
    (Timestamp) The time stamp at which an account group was last updated.
    UpdatedBy string
    (String) The IAM ID of the user or service that updated an account group.
    Url string
    (String) The URL of an account group.
    CreatedAt string
    (Timestamp) The time stamp at which an account group is created.
    CreatedBy string
    (String) The IAM ID of an user or service that created an account group.
    Crn string
    (String) The Cloud Resource Name (CRN) of an account group.
    EnterpriseAccountGroupId string
    (String) The unique identifier of an enterprise account group.
    EnterpriseAccountId string
    (String) The enterprise account ID.
    EnterpriseId string
    (String) The enterprise ID that the account group is a part of.
    EnterprisePath string
    (String) The path from the enterprise to the particular account group.
    Name string
    The name of an enterprise. The minimum and maximum character should be from 3 to 60 characters.
    Parent string
    The CRN of the parent in which the account group is created. The parent can be an existing account group or an enterprise itself.
    PrimaryContactEmail string
    (String) The Email address of the primary contact of an account group.
    PrimaryContactIamId string
    The IAM ID of an enterprise primary contact, such as IBMid-0123ABC. The IAM ID must already exist.
    State string
    (String) The state of an account group.
    Timeouts EnterpriseAccountGroupTimeoutsArgs
    UpdatedAt string
    (Timestamp) The time stamp at which an account group was last updated.
    UpdatedBy string
    (String) The IAM ID of the user or service that updated an account group.
    Url string
    (String) The URL of an account group.
    createdAt String
    (Timestamp) The time stamp at which an account group is created.
    createdBy String
    (String) The IAM ID of an user or service that created an account group.
    crn String
    (String) The Cloud Resource Name (CRN) of an account group.
    enterpriseAccountGroupId String
    (String) The unique identifier of an enterprise account group.
    enterpriseAccountId String
    (String) The enterprise account ID.
    enterpriseId String
    (String) The enterprise ID that the account group is a part of.
    enterprisePath String
    (String) The path from the enterprise to the particular account group.
    name String
    The name of an enterprise. The minimum and maximum character should be from 3 to 60 characters.
    parent String
    The CRN of the parent in which the account group is created. The parent can be an existing account group or an enterprise itself.
    primaryContactEmail String
    (String) The Email address of the primary contact of an account group.
    primaryContactIamId String
    The IAM ID of an enterprise primary contact, such as IBMid-0123ABC. The IAM ID must already exist.
    state String
    (String) The state of an account group.
    timeouts EnterpriseAccountGroupTimeouts
    updatedAt String
    (Timestamp) The time stamp at which an account group was last updated.
    updatedBy String
    (String) The IAM ID of the user or service that updated an account group.
    url String
    (String) The URL of an account group.
    createdAt string
    (Timestamp) The time stamp at which an account group is created.
    createdBy string
    (String) The IAM ID of an user or service that created an account group.
    crn string
    (String) The Cloud Resource Name (CRN) of an account group.
    enterpriseAccountGroupId string
    (String) The unique identifier of an enterprise account group.
    enterpriseAccountId string
    (String) The enterprise account ID.
    enterpriseId string
    (String) The enterprise ID that the account group is a part of.
    enterprisePath string
    (String) The path from the enterprise to the particular account group.
    name string
    The name of an enterprise. The minimum and maximum character should be from 3 to 60 characters.
    parent string
    The CRN of the parent in which the account group is created. The parent can be an existing account group or an enterprise itself.
    primaryContactEmail string
    (String) The Email address of the primary contact of an account group.
    primaryContactIamId string
    The IAM ID of an enterprise primary contact, such as IBMid-0123ABC. The IAM ID must already exist.
    state string
    (String) The state of an account group.
    timeouts EnterpriseAccountGroupTimeouts
    updatedAt string
    (Timestamp) The time stamp at which an account group was last updated.
    updatedBy string
    (String) The IAM ID of the user or service that updated an account group.
    url string
    (String) The URL of an account group.
    created_at str
    (Timestamp) The time stamp at which an account group is created.
    created_by str
    (String) The IAM ID of an user or service that created an account group.
    crn str
    (String) The Cloud Resource Name (CRN) of an account group.
    enterprise_account_group_id str
    (String) The unique identifier of an enterprise account group.
    enterprise_account_id str
    (String) The enterprise account ID.
    enterprise_id str
    (String) The enterprise ID that the account group is a part of.
    enterprise_path str
    (String) The path from the enterprise to the particular account group.
    name str
    The name of an enterprise. The minimum and maximum character should be from 3 to 60 characters.
    parent str
    The CRN of the parent in which the account group is created. The parent can be an existing account group or an enterprise itself.
    primary_contact_email str
    (String) The Email address of the primary contact of an account group.
    primary_contact_iam_id str
    The IAM ID of an enterprise primary contact, such as IBMid-0123ABC. The IAM ID must already exist.
    state str
    (String) The state of an account group.
    timeouts EnterpriseAccountGroupTimeoutsArgs
    updated_at str
    (Timestamp) The time stamp at which an account group was last updated.
    updated_by str
    (String) The IAM ID of the user or service that updated an account group.
    url str
    (String) The URL of an account group.
    createdAt String
    (Timestamp) The time stamp at which an account group is created.
    createdBy String
    (String) The IAM ID of an user or service that created an account group.
    crn String
    (String) The Cloud Resource Name (CRN) of an account group.
    enterpriseAccountGroupId String
    (String) The unique identifier of an enterprise account group.
    enterpriseAccountId String
    (String) The enterprise account ID.
    enterpriseId String
    (String) The enterprise ID that the account group is a part of.
    enterprisePath String
    (String) The path from the enterprise to the particular account group.
    name String
    The name of an enterprise. The minimum and maximum character should be from 3 to 60 characters.
    parent String
    The CRN of the parent in which the account group is created. The parent can be an existing account group or an enterprise itself.
    primaryContactEmail String
    (String) The Email address of the primary contact of an account group.
    primaryContactIamId String
    The IAM ID of an enterprise primary contact, such as IBMid-0123ABC. The IAM ID must already exist.
    state String
    (String) The state of an account group.
    timeouts Property Map
    updatedAt String
    (Timestamp) The time stamp at which an account group was last updated.
    updatedBy String
    (String) The IAM ID of the user or service that updated an account group.
    url String
    (String) The URL of an account group.

    Supporting Types

    EnterpriseAccountGroupTimeouts, EnterpriseAccountGroupTimeoutsArgs

    Create string
    Delete string
    Update string
    Create string
    Delete string
    Update string
    create String
    delete String
    update String
    create string
    delete string
    update string
    create str
    delete str
    update str
    create String
    delete String
    update String

    Import

    The ibm_enterprise_account_group resource can be imported by using account_group_id.

    Example

    $ pulumi import ibm:index/enterpriseAccountGroup:EnterpriseAccountGroup example ae337d0b6cf6485a918a47e289ab4628
    

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

    Package Details

    Repository
    ibm ibm-cloud/terraform-provider-ibm
    License
    Notes
    This Pulumi package is based on the ibm Terraform Provider.
    ibm logo
    ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud