1. Packages
  2. Snowflake Provider
  3. API Docs
  4. Account
Viewing docs for Snowflake v2.13.0
published on Thursday, Feb 26, 2026 by Pulumi
snowflake logo
Viewing docs for Snowflake v2.13.0
published on Thursday, Feb 26, 2026 by Pulumi

    The account resource allows you to create and manage Snowflake accounts. For more information, check account documentation.

    Note To use this resource you have to use an account with a privilege to use the ORGADMIN role.

    Note Changes for the following fields won’t be detected: admin_name, admin_password, admin_rsa_public_key, admin_user_type, first_name, last_name, email, must_change_password. This is because these fields only supply initial values for creating the admin user. Once the account is created, the admin user becomes an independent entity. Modifying users from the account resource is challenging since it requires logging into that account. This would require the account resource logging into the account it created to read or alter admin user properties, which is impractical, because any external change to the admin user would disrupt the change detection anyway.

    Note During the import, when Terraform detects changes on a field with ForceNew, it will try to recreate the resource. Due to Terraform limitations, grace_period_in_days is not set at that moment. This means that Terraform will try to drop the account with the empty grace period which is required, and fail. Before importing, ensure if the resource configuration matches the actual state. See more in our Resource Migration guide and issue #3390.

    Create Account Resource

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

    Constructor syntax

    new Account(name: string, args: AccountArgs, opts?: CustomResourceOptions);
    @overload
    def Account(resource_name: str,
                args: AccountArgs,
                opts: Optional[ResourceOptions] = None)
    
    @overload
    def Account(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                edition: Optional[str] = None,
                grace_period_in_days: Optional[int] = None,
                admin_name: Optional[str] = None,
                email: Optional[str] = None,
                first_name: Optional[str] = None,
                consumption_billing_entity: Optional[str] = None,
                comment: Optional[str] = None,
                admin_user_type: Optional[str] = None,
                admin_rsa_public_key: Optional[str] = None,
                admin_password: Optional[str] = None,
                is_org_admin: Optional[str] = None,
                last_name: Optional[str] = None,
                must_change_password: Optional[str] = None,
                name: Optional[str] = None,
                region: Optional[str] = None,
                region_group: Optional[str] = None)
    func NewAccount(ctx *Context, name string, args AccountArgs, opts ...ResourceOption) (*Account, error)
    public Account(string name, AccountArgs args, CustomResourceOptions? opts = null)
    public Account(String name, AccountArgs args)
    public Account(String name, AccountArgs args, CustomResourceOptions options)
    
    type: snowflake:Account
    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 AccountArgs
    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 AccountArgs
    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 AccountArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AccountArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AccountArgs
    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 accountResource = new Snowflake.Account("accountResource", new()
    {
        Edition = "string",
        GracePeriodInDays = 0,
        AdminName = "string",
        Email = "string",
        FirstName = "string",
        ConsumptionBillingEntity = "string",
        Comment = "string",
        AdminUserType = "string",
        AdminRsaPublicKey = "string",
        AdminPassword = "string",
        IsOrgAdmin = "string",
        LastName = "string",
        MustChangePassword = "string",
        Name = "string",
        Region = "string",
        RegionGroup = "string",
    });
    
    example, err := snowflake.NewAccount(ctx, "accountResource", &snowflake.AccountArgs{
    	Edition:                  pulumi.String("string"),
    	GracePeriodInDays:        pulumi.Int(0),
    	AdminName:                pulumi.String("string"),
    	Email:                    pulumi.String("string"),
    	FirstName:                pulumi.String("string"),
    	ConsumptionBillingEntity: pulumi.String("string"),
    	Comment:                  pulumi.String("string"),
    	AdminUserType:            pulumi.String("string"),
    	AdminRsaPublicKey:        pulumi.String("string"),
    	AdminPassword:            pulumi.String("string"),
    	IsOrgAdmin:               pulumi.String("string"),
    	LastName:                 pulumi.String("string"),
    	MustChangePassword:       pulumi.String("string"),
    	Name:                     pulumi.String("string"),
    	Region:                   pulumi.String("string"),
    	RegionGroup:              pulumi.String("string"),
    })
    
    var accountResource = new Account("accountResource", AccountArgs.builder()
        .edition("string")
        .gracePeriodInDays(0)
        .adminName("string")
        .email("string")
        .firstName("string")
        .consumptionBillingEntity("string")
        .comment("string")
        .adminUserType("string")
        .adminRsaPublicKey("string")
        .adminPassword("string")
        .isOrgAdmin("string")
        .lastName("string")
        .mustChangePassword("string")
        .name("string")
        .region("string")
        .regionGroup("string")
        .build());
    
    account_resource = snowflake.Account("accountResource",
        edition="string",
        grace_period_in_days=0,
        admin_name="string",
        email="string",
        first_name="string",
        consumption_billing_entity="string",
        comment="string",
        admin_user_type="string",
        admin_rsa_public_key="string",
        admin_password="string",
        is_org_admin="string",
        last_name="string",
        must_change_password="string",
        name="string",
        region="string",
        region_group="string")
    
    const accountResource = new snowflake.Account("accountResource", {
        edition: "string",
        gracePeriodInDays: 0,
        adminName: "string",
        email: "string",
        firstName: "string",
        consumptionBillingEntity: "string",
        comment: "string",
        adminUserType: "string",
        adminRsaPublicKey: "string",
        adminPassword: "string",
        isOrgAdmin: "string",
        lastName: "string",
        mustChangePassword: "string",
        name: "string",
        region: "string",
        regionGroup: "string",
    });
    
    type: snowflake:Account
    properties:
        adminName: string
        adminPassword: string
        adminRsaPublicKey: string
        adminUserType: string
        comment: string
        consumptionBillingEntity: string
        edition: string
        email: string
        firstName: string
        gracePeriodInDays: 0
        isOrgAdmin: string
        lastName: string
        mustChangePassword: string
        name: string
        region: string
        regionGroup: string
    

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

    AdminName string
    Login name of the initial administrative user of the account. A new user is created in the new account with this name and password and granted the ACCOUNTADMIN role in the account. A login name can be any string consisting of letters, numbers, and underscores. Login names are always case-insensitive. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    Edition string
    Snowflake Edition of the account. See more about Snowflake Editions in the official documentation. Valid options are: STANDARD | ENTERPRISE | BUSINESS_CRITICAL
    Email string
    Email address of the initial administrative user of the account. This email address is used to send any notifications about the account. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    GracePeriodInDays int
    Specifies the number of days during which the account can be restored (“undropped”). The minimum is 3 days and the maximum is 90 days.
    AdminPassword string
    Password for the initial administrative user of the account. Either adminpassword or adminrsapublickey has to be specified. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    AdminRsaPublicKey string
    Assigns a public key to the initial administrative user of the account. Either adminpassword or adminrsapublickey has to be specified. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    AdminUserType string
    Used for setting the type of the first user that is assigned the ACCOUNTADMIN role during account creation. Valid options are: PERSON | SERVICE | LEGACY_SERVICE External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    Comment string
    Specifies a comment for the account.
    ConsumptionBillingEntity string
    Determines which billing entity is responsible for the account's consumption-based billing.
    FirstName string
    First name of the initial administrative user of the account. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    IsOrgAdmin string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Sets an account property that determines whether the ORGADMIN role is enabled in the account. Only an organization administrator (i.e. user with the ORGADMIN role) can set the property.
    LastName string
    Last name of the initial administrative user of the account. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    MustChangePassword string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Specifies whether the new user created to administer the account is forced to change their password upon first login into the account. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    Name string
    Specifies the identifier (i.e. name) for the account. It must be unique within an organization, regardless of which Snowflake Region the account is in and must start with an alphabetic character and cannot contain spaces or special characters except for underscores (_). Note that if the account name includes underscores, features that do not accept account names with underscores (e.g. Okta SSO or SCIM) can reference a version of the account name that substitutes hyphens (-) for the underscores.
    Region string
    Snowflake Region ID of the region where the account is created. If no value is provided, Snowflake creates the account in the same Snowflake Region as the current account (i.e. the account in which the CREATE ACCOUNT statement is executed.)
    RegionGroup string
    ID of the region group where the account is created. To retrieve the region group ID for existing accounts in your organization, execute the SHOW REGIONS command. For information about when you might need to specify region group, see Region groups.
    AdminName string
    Login name of the initial administrative user of the account. A new user is created in the new account with this name and password and granted the ACCOUNTADMIN role in the account. A login name can be any string consisting of letters, numbers, and underscores. Login names are always case-insensitive. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    Edition string
    Snowflake Edition of the account. See more about Snowflake Editions in the official documentation. Valid options are: STANDARD | ENTERPRISE | BUSINESS_CRITICAL
    Email string
    Email address of the initial administrative user of the account. This email address is used to send any notifications about the account. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    GracePeriodInDays int
    Specifies the number of days during which the account can be restored (“undropped”). The minimum is 3 days and the maximum is 90 days.
    AdminPassword string
    Password for the initial administrative user of the account. Either adminpassword or adminrsapublickey has to be specified. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    AdminRsaPublicKey string
    Assigns a public key to the initial administrative user of the account. Either adminpassword or adminrsapublickey has to be specified. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    AdminUserType string
    Used for setting the type of the first user that is assigned the ACCOUNTADMIN role during account creation. Valid options are: PERSON | SERVICE | LEGACY_SERVICE External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    Comment string
    Specifies a comment for the account.
    ConsumptionBillingEntity string
    Determines which billing entity is responsible for the account's consumption-based billing.
    FirstName string
    First name of the initial administrative user of the account. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    IsOrgAdmin string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Sets an account property that determines whether the ORGADMIN role is enabled in the account. Only an organization administrator (i.e. user with the ORGADMIN role) can set the property.
    LastName string
    Last name of the initial administrative user of the account. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    MustChangePassword string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Specifies whether the new user created to administer the account is forced to change their password upon first login into the account. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    Name string
    Specifies the identifier (i.e. name) for the account. It must be unique within an organization, regardless of which Snowflake Region the account is in and must start with an alphabetic character and cannot contain spaces or special characters except for underscores (_). Note that if the account name includes underscores, features that do not accept account names with underscores (e.g. Okta SSO or SCIM) can reference a version of the account name that substitutes hyphens (-) for the underscores.
    Region string
    Snowflake Region ID of the region where the account is created. If no value is provided, Snowflake creates the account in the same Snowflake Region as the current account (i.e. the account in which the CREATE ACCOUNT statement is executed.)
    RegionGroup string
    ID of the region group where the account is created. To retrieve the region group ID for existing accounts in your organization, execute the SHOW REGIONS command. For information about when you might need to specify region group, see Region groups.
    adminName String
    Login name of the initial administrative user of the account. A new user is created in the new account with this name and password and granted the ACCOUNTADMIN role in the account. A login name can be any string consisting of letters, numbers, and underscores. Login names are always case-insensitive. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    edition String
    Snowflake Edition of the account. See more about Snowflake Editions in the official documentation. Valid options are: STANDARD | ENTERPRISE | BUSINESS_CRITICAL
    email String
    Email address of the initial administrative user of the account. This email address is used to send any notifications about the account. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    gracePeriodInDays Integer
    Specifies the number of days during which the account can be restored (“undropped”). The minimum is 3 days and the maximum is 90 days.
    adminPassword String
    Password for the initial administrative user of the account. Either adminpassword or adminrsapublickey has to be specified. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    adminRsaPublicKey String
    Assigns a public key to the initial administrative user of the account. Either adminpassword or adminrsapublickey has to be specified. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    adminUserType String
    Used for setting the type of the first user that is assigned the ACCOUNTADMIN role during account creation. Valid options are: PERSON | SERVICE | LEGACY_SERVICE External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    comment String
    Specifies a comment for the account.
    consumptionBillingEntity String
    Determines which billing entity is responsible for the account's consumption-based billing.
    firstName String
    First name of the initial administrative user of the account. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    isOrgAdmin String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Sets an account property that determines whether the ORGADMIN role is enabled in the account. Only an organization administrator (i.e. user with the ORGADMIN role) can set the property.
    lastName String
    Last name of the initial administrative user of the account. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    mustChangePassword String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Specifies whether the new user created to administer the account is forced to change their password upon first login into the account. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    name String
    Specifies the identifier (i.e. name) for the account. It must be unique within an organization, regardless of which Snowflake Region the account is in and must start with an alphabetic character and cannot contain spaces or special characters except for underscores (_). Note that if the account name includes underscores, features that do not accept account names with underscores (e.g. Okta SSO or SCIM) can reference a version of the account name that substitutes hyphens (-) for the underscores.
    region String
    Snowflake Region ID of the region where the account is created. If no value is provided, Snowflake creates the account in the same Snowflake Region as the current account (i.e. the account in which the CREATE ACCOUNT statement is executed.)
    regionGroup String
    ID of the region group where the account is created. To retrieve the region group ID for existing accounts in your organization, execute the SHOW REGIONS command. For information about when you might need to specify region group, see Region groups.
    adminName string
    Login name of the initial administrative user of the account. A new user is created in the new account with this name and password and granted the ACCOUNTADMIN role in the account. A login name can be any string consisting of letters, numbers, and underscores. Login names are always case-insensitive. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    edition string
    Snowflake Edition of the account. See more about Snowflake Editions in the official documentation. Valid options are: STANDARD | ENTERPRISE | BUSINESS_CRITICAL
    email string
    Email address of the initial administrative user of the account. This email address is used to send any notifications about the account. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    gracePeriodInDays number
    Specifies the number of days during which the account can be restored (“undropped”). The minimum is 3 days and the maximum is 90 days.
    adminPassword string
    Password for the initial administrative user of the account. Either adminpassword or adminrsapublickey has to be specified. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    adminRsaPublicKey string
    Assigns a public key to the initial administrative user of the account. Either adminpassword or adminrsapublickey has to be specified. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    adminUserType string
    Used for setting the type of the first user that is assigned the ACCOUNTADMIN role during account creation. Valid options are: PERSON | SERVICE | LEGACY_SERVICE External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    comment string
    Specifies a comment for the account.
    consumptionBillingEntity string
    Determines which billing entity is responsible for the account's consumption-based billing.
    firstName string
    First name of the initial administrative user of the account. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    isOrgAdmin string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Sets an account property that determines whether the ORGADMIN role is enabled in the account. Only an organization administrator (i.e. user with the ORGADMIN role) can set the property.
    lastName string
    Last name of the initial administrative user of the account. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    mustChangePassword string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Specifies whether the new user created to administer the account is forced to change their password upon first login into the account. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    name string
    Specifies the identifier (i.e. name) for the account. It must be unique within an organization, regardless of which Snowflake Region the account is in and must start with an alphabetic character and cannot contain spaces or special characters except for underscores (_). Note that if the account name includes underscores, features that do not accept account names with underscores (e.g. Okta SSO or SCIM) can reference a version of the account name that substitutes hyphens (-) for the underscores.
    region string
    Snowflake Region ID of the region where the account is created. If no value is provided, Snowflake creates the account in the same Snowflake Region as the current account (i.e. the account in which the CREATE ACCOUNT statement is executed.)
    regionGroup string
    ID of the region group where the account is created. To retrieve the region group ID for existing accounts in your organization, execute the SHOW REGIONS command. For information about when you might need to specify region group, see Region groups.
    admin_name str
    Login name of the initial administrative user of the account. A new user is created in the new account with this name and password and granted the ACCOUNTADMIN role in the account. A login name can be any string consisting of letters, numbers, and underscores. Login names are always case-insensitive. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    edition str
    Snowflake Edition of the account. See more about Snowflake Editions in the official documentation. Valid options are: STANDARD | ENTERPRISE | BUSINESS_CRITICAL
    email str
    Email address of the initial administrative user of the account. This email address is used to send any notifications about the account. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    grace_period_in_days int
    Specifies the number of days during which the account can be restored (“undropped”). The minimum is 3 days and the maximum is 90 days.
    admin_password str
    Password for the initial administrative user of the account. Either adminpassword or adminrsapublickey has to be specified. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    admin_rsa_public_key str
    Assigns a public key to the initial administrative user of the account. Either adminpassword or adminrsapublickey has to be specified. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    admin_user_type str
    Used for setting the type of the first user that is assigned the ACCOUNTADMIN role during account creation. Valid options are: PERSON | SERVICE | LEGACY_SERVICE External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    comment str
    Specifies a comment for the account.
    consumption_billing_entity str
    Determines which billing entity is responsible for the account's consumption-based billing.
    first_name str
    First name of the initial administrative user of the account. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    is_org_admin str
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Sets an account property that determines whether the ORGADMIN role is enabled in the account. Only an organization administrator (i.e. user with the ORGADMIN role) can set the property.
    last_name str
    Last name of the initial administrative user of the account. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    must_change_password str
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Specifies whether the new user created to administer the account is forced to change their password upon first login into the account. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    name str
    Specifies the identifier (i.e. name) for the account. It must be unique within an organization, regardless of which Snowflake Region the account is in and must start with an alphabetic character and cannot contain spaces or special characters except for underscores (_). Note that if the account name includes underscores, features that do not accept account names with underscores (e.g. Okta SSO or SCIM) can reference a version of the account name that substitutes hyphens (-) for the underscores.
    region str
    Snowflake Region ID of the region where the account is created. If no value is provided, Snowflake creates the account in the same Snowflake Region as the current account (i.e. the account in which the CREATE ACCOUNT statement is executed.)
    region_group str
    ID of the region group where the account is created. To retrieve the region group ID for existing accounts in your organization, execute the SHOW REGIONS command. For information about when you might need to specify region group, see Region groups.
    adminName String
    Login name of the initial administrative user of the account. A new user is created in the new account with this name and password and granted the ACCOUNTADMIN role in the account. A login name can be any string consisting of letters, numbers, and underscores. Login names are always case-insensitive. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    edition String
    Snowflake Edition of the account. See more about Snowflake Editions in the official documentation. Valid options are: STANDARD | ENTERPRISE | BUSINESS_CRITICAL
    email String
    Email address of the initial administrative user of the account. This email address is used to send any notifications about the account. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    gracePeriodInDays Number
    Specifies the number of days during which the account can be restored (“undropped”). The minimum is 3 days and the maximum is 90 days.
    adminPassword String
    Password for the initial administrative user of the account. Either adminpassword or adminrsapublickey has to be specified. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    adminRsaPublicKey String
    Assigns a public key to the initial administrative user of the account. Either adminpassword or adminrsapublickey has to be specified. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    adminUserType String
    Used for setting the type of the first user that is assigned the ACCOUNTADMIN role during account creation. Valid options are: PERSON | SERVICE | LEGACY_SERVICE External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    comment String
    Specifies a comment for the account.
    consumptionBillingEntity String
    Determines which billing entity is responsible for the account's consumption-based billing.
    firstName String
    First name of the initial administrative user of the account. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    isOrgAdmin String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Sets an account property that determines whether the ORGADMIN role is enabled in the account. Only an organization administrator (i.e. user with the ORGADMIN role) can set the property.
    lastName String
    Last name of the initial administrative user of the account. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    mustChangePassword String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Specifies whether the new user created to administer the account is forced to change their password upon first login into the account. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    name String
    Specifies the identifier (i.e. name) for the account. It must be unique within an organization, regardless of which Snowflake Region the account is in and must start with an alphabetic character and cannot contain spaces or special characters except for underscores (_). Note that if the account name includes underscores, features that do not accept account names with underscores (e.g. Okta SSO or SCIM) can reference a version of the account name that substitutes hyphens (-) for the underscores.
    region String
    Snowflake Region ID of the region where the account is created. If no value is provided, Snowflake creates the account in the same Snowflake Region as the current account (i.e. the account in which the CREATE ACCOUNT statement is executed.)
    regionGroup String
    ID of the region group where the account is created. To retrieve the region group ID for existing accounts in your organization, execute the SHOW REGIONS command. For information about when you might need to specify region group, see Region groups.

    Outputs

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

    FullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    Id string
    The provider-assigned unique ID for this managed resource.
    ShowOutputs List<AccountShowOutput>
    Outputs the result of SHOW ACCOUNTS for the given account.
    FullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    Id string
    The provider-assigned unique ID for this managed resource.
    ShowOutputs []AccountShowOutput
    Outputs the result of SHOW ACCOUNTS for the given account.
    fullyQualifiedName String
    Fully qualified name of the resource. For more information, see object name resolution.
    id String
    The provider-assigned unique ID for this managed resource.
    showOutputs List<AccountShowOutput>
    Outputs the result of SHOW ACCOUNTS for the given account.
    fullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    id string
    The provider-assigned unique ID for this managed resource.
    showOutputs AccountShowOutput[]
    Outputs the result of SHOW ACCOUNTS for the given account.
    fully_qualified_name str
    Fully qualified name of the resource. For more information, see object name resolution.
    id str
    The provider-assigned unique ID for this managed resource.
    show_outputs Sequence[AccountShowOutput]
    Outputs the result of SHOW ACCOUNTS for the given account.
    fullyQualifiedName String
    Fully qualified name of the resource. For more information, see object name resolution.
    id String
    The provider-assigned unique ID for this managed resource.
    showOutputs List<Property Map>
    Outputs the result of SHOW ACCOUNTS for the given account.

    Look up Existing Account Resource

    Get an existing Account 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?: AccountState, opts?: CustomResourceOptions): Account
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            admin_name: Optional[str] = None,
            admin_password: Optional[str] = None,
            admin_rsa_public_key: Optional[str] = None,
            admin_user_type: Optional[str] = None,
            comment: Optional[str] = None,
            consumption_billing_entity: Optional[str] = None,
            edition: Optional[str] = None,
            email: Optional[str] = None,
            first_name: Optional[str] = None,
            fully_qualified_name: Optional[str] = None,
            grace_period_in_days: Optional[int] = None,
            is_org_admin: Optional[str] = None,
            last_name: Optional[str] = None,
            must_change_password: Optional[str] = None,
            name: Optional[str] = None,
            region: Optional[str] = None,
            region_group: Optional[str] = None,
            show_outputs: Optional[Sequence[AccountShowOutputArgs]] = None) -> Account
    func GetAccount(ctx *Context, name string, id IDInput, state *AccountState, opts ...ResourceOption) (*Account, error)
    public static Account Get(string name, Input<string> id, AccountState? state, CustomResourceOptions? opts = null)
    public static Account get(String name, Output<String> id, AccountState state, CustomResourceOptions options)
    resources:  _:    type: snowflake:Account    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:
    AdminName string
    Login name of the initial administrative user of the account. A new user is created in the new account with this name and password and granted the ACCOUNTADMIN role in the account. A login name can be any string consisting of letters, numbers, and underscores. Login names are always case-insensitive. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    AdminPassword string
    Password for the initial administrative user of the account. Either adminpassword or adminrsapublickey has to be specified. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    AdminRsaPublicKey string
    Assigns a public key to the initial administrative user of the account. Either adminpassword or adminrsapublickey has to be specified. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    AdminUserType string
    Used for setting the type of the first user that is assigned the ACCOUNTADMIN role during account creation. Valid options are: PERSON | SERVICE | LEGACY_SERVICE External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    Comment string
    Specifies a comment for the account.
    ConsumptionBillingEntity string
    Determines which billing entity is responsible for the account's consumption-based billing.
    Edition string
    Snowflake Edition of the account. See more about Snowflake Editions in the official documentation. Valid options are: STANDARD | ENTERPRISE | BUSINESS_CRITICAL
    Email string
    Email address of the initial administrative user of the account. This email address is used to send any notifications about the account. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    FirstName string
    First name of the initial administrative user of the account. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    FullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    GracePeriodInDays int
    Specifies the number of days during which the account can be restored (“undropped”). The minimum is 3 days and the maximum is 90 days.
    IsOrgAdmin string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Sets an account property that determines whether the ORGADMIN role is enabled in the account. Only an organization administrator (i.e. user with the ORGADMIN role) can set the property.
    LastName string
    Last name of the initial administrative user of the account. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    MustChangePassword string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Specifies whether the new user created to administer the account is forced to change their password upon first login into the account. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    Name string
    Specifies the identifier (i.e. name) for the account. It must be unique within an organization, regardless of which Snowflake Region the account is in and must start with an alphabetic character and cannot contain spaces or special characters except for underscores (_). Note that if the account name includes underscores, features that do not accept account names with underscores (e.g. Okta SSO or SCIM) can reference a version of the account name that substitutes hyphens (-) for the underscores.
    Region string
    Snowflake Region ID of the region where the account is created. If no value is provided, Snowflake creates the account in the same Snowflake Region as the current account (i.e. the account in which the CREATE ACCOUNT statement is executed.)
    RegionGroup string
    ID of the region group where the account is created. To retrieve the region group ID for existing accounts in your organization, execute the SHOW REGIONS command. For information about when you might need to specify region group, see Region groups.
    ShowOutputs List<AccountShowOutput>
    Outputs the result of SHOW ACCOUNTS for the given account.
    AdminName string
    Login name of the initial administrative user of the account. A new user is created in the new account with this name and password and granted the ACCOUNTADMIN role in the account. A login name can be any string consisting of letters, numbers, and underscores. Login names are always case-insensitive. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    AdminPassword string
    Password for the initial administrative user of the account. Either adminpassword or adminrsapublickey has to be specified. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    AdminRsaPublicKey string
    Assigns a public key to the initial administrative user of the account. Either adminpassword or adminrsapublickey has to be specified. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    AdminUserType string
    Used for setting the type of the first user that is assigned the ACCOUNTADMIN role during account creation. Valid options are: PERSON | SERVICE | LEGACY_SERVICE External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    Comment string
    Specifies a comment for the account.
    ConsumptionBillingEntity string
    Determines which billing entity is responsible for the account's consumption-based billing.
    Edition string
    Snowflake Edition of the account. See more about Snowflake Editions in the official documentation. Valid options are: STANDARD | ENTERPRISE | BUSINESS_CRITICAL
    Email string
    Email address of the initial administrative user of the account. This email address is used to send any notifications about the account. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    FirstName string
    First name of the initial administrative user of the account. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    FullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    GracePeriodInDays int
    Specifies the number of days during which the account can be restored (“undropped”). The minimum is 3 days and the maximum is 90 days.
    IsOrgAdmin string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Sets an account property that determines whether the ORGADMIN role is enabled in the account. Only an organization administrator (i.e. user with the ORGADMIN role) can set the property.
    LastName string
    Last name of the initial administrative user of the account. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    MustChangePassword string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Specifies whether the new user created to administer the account is forced to change their password upon first login into the account. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    Name string
    Specifies the identifier (i.e. name) for the account. It must be unique within an organization, regardless of which Snowflake Region the account is in and must start with an alphabetic character and cannot contain spaces or special characters except for underscores (_). Note that if the account name includes underscores, features that do not accept account names with underscores (e.g. Okta SSO or SCIM) can reference a version of the account name that substitutes hyphens (-) for the underscores.
    Region string
    Snowflake Region ID of the region where the account is created. If no value is provided, Snowflake creates the account in the same Snowflake Region as the current account (i.e. the account in which the CREATE ACCOUNT statement is executed.)
    RegionGroup string
    ID of the region group where the account is created. To retrieve the region group ID for existing accounts in your organization, execute the SHOW REGIONS command. For information about when you might need to specify region group, see Region groups.
    ShowOutputs []AccountShowOutputArgs
    Outputs the result of SHOW ACCOUNTS for the given account.
    adminName String
    Login name of the initial administrative user of the account. A new user is created in the new account with this name and password and granted the ACCOUNTADMIN role in the account. A login name can be any string consisting of letters, numbers, and underscores. Login names are always case-insensitive. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    adminPassword String
    Password for the initial administrative user of the account. Either adminpassword or adminrsapublickey has to be specified. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    adminRsaPublicKey String
    Assigns a public key to the initial administrative user of the account. Either adminpassword or adminrsapublickey has to be specified. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    adminUserType String
    Used for setting the type of the first user that is assigned the ACCOUNTADMIN role during account creation. Valid options are: PERSON | SERVICE | LEGACY_SERVICE External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    comment String
    Specifies a comment for the account.
    consumptionBillingEntity String
    Determines which billing entity is responsible for the account's consumption-based billing.
    edition String
    Snowflake Edition of the account. See more about Snowflake Editions in the official documentation. Valid options are: STANDARD | ENTERPRISE | BUSINESS_CRITICAL
    email String
    Email address of the initial administrative user of the account. This email address is used to send any notifications about the account. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    firstName String
    First name of the initial administrative user of the account. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    fullyQualifiedName String
    Fully qualified name of the resource. For more information, see object name resolution.
    gracePeriodInDays Integer
    Specifies the number of days during which the account can be restored (“undropped”). The minimum is 3 days and the maximum is 90 days.
    isOrgAdmin String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Sets an account property that determines whether the ORGADMIN role is enabled in the account. Only an organization administrator (i.e. user with the ORGADMIN role) can set the property.
    lastName String
    Last name of the initial administrative user of the account. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    mustChangePassword String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Specifies whether the new user created to administer the account is forced to change their password upon first login into the account. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    name String
    Specifies the identifier (i.e. name) for the account. It must be unique within an organization, regardless of which Snowflake Region the account is in and must start with an alphabetic character and cannot contain spaces or special characters except for underscores (_). Note that if the account name includes underscores, features that do not accept account names with underscores (e.g. Okta SSO or SCIM) can reference a version of the account name that substitutes hyphens (-) for the underscores.
    region String
    Snowflake Region ID of the region where the account is created. If no value is provided, Snowflake creates the account in the same Snowflake Region as the current account (i.e. the account in which the CREATE ACCOUNT statement is executed.)
    regionGroup String
    ID of the region group where the account is created. To retrieve the region group ID for existing accounts in your organization, execute the SHOW REGIONS command. For information about when you might need to specify region group, see Region groups.
    showOutputs List<AccountShowOutput>
    Outputs the result of SHOW ACCOUNTS for the given account.
    adminName string
    Login name of the initial administrative user of the account. A new user is created in the new account with this name and password and granted the ACCOUNTADMIN role in the account. A login name can be any string consisting of letters, numbers, and underscores. Login names are always case-insensitive. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    adminPassword string
    Password for the initial administrative user of the account. Either adminpassword or adminrsapublickey has to be specified. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    adminRsaPublicKey string
    Assigns a public key to the initial administrative user of the account. Either adminpassword or adminrsapublickey has to be specified. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    adminUserType string
    Used for setting the type of the first user that is assigned the ACCOUNTADMIN role during account creation. Valid options are: PERSON | SERVICE | LEGACY_SERVICE External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    comment string
    Specifies a comment for the account.
    consumptionBillingEntity string
    Determines which billing entity is responsible for the account's consumption-based billing.
    edition string
    Snowflake Edition of the account. See more about Snowflake Editions in the official documentation. Valid options are: STANDARD | ENTERPRISE | BUSINESS_CRITICAL
    email string
    Email address of the initial administrative user of the account. This email address is used to send any notifications about the account. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    firstName string
    First name of the initial administrative user of the account. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    fullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    gracePeriodInDays number
    Specifies the number of days during which the account can be restored (“undropped”). The minimum is 3 days and the maximum is 90 days.
    isOrgAdmin string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Sets an account property that determines whether the ORGADMIN role is enabled in the account. Only an organization administrator (i.e. user with the ORGADMIN role) can set the property.
    lastName string
    Last name of the initial administrative user of the account. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    mustChangePassword string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Specifies whether the new user created to administer the account is forced to change their password upon first login into the account. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    name string
    Specifies the identifier (i.e. name) for the account. It must be unique within an organization, regardless of which Snowflake Region the account is in and must start with an alphabetic character and cannot contain spaces or special characters except for underscores (_). Note that if the account name includes underscores, features that do not accept account names with underscores (e.g. Okta SSO or SCIM) can reference a version of the account name that substitutes hyphens (-) for the underscores.
    region string
    Snowflake Region ID of the region where the account is created. If no value is provided, Snowflake creates the account in the same Snowflake Region as the current account (i.e. the account in which the CREATE ACCOUNT statement is executed.)
    regionGroup string
    ID of the region group where the account is created. To retrieve the region group ID for existing accounts in your organization, execute the SHOW REGIONS command. For information about when you might need to specify region group, see Region groups.
    showOutputs AccountShowOutput[]
    Outputs the result of SHOW ACCOUNTS for the given account.
    admin_name str
    Login name of the initial administrative user of the account. A new user is created in the new account with this name and password and granted the ACCOUNTADMIN role in the account. A login name can be any string consisting of letters, numbers, and underscores. Login names are always case-insensitive. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    admin_password str
    Password for the initial administrative user of the account. Either adminpassword or adminrsapublickey has to be specified. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    admin_rsa_public_key str
    Assigns a public key to the initial administrative user of the account. Either adminpassword or adminrsapublickey has to be specified. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    admin_user_type str
    Used for setting the type of the first user that is assigned the ACCOUNTADMIN role during account creation. Valid options are: PERSON | SERVICE | LEGACY_SERVICE External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    comment str
    Specifies a comment for the account.
    consumption_billing_entity str
    Determines which billing entity is responsible for the account's consumption-based billing.
    edition str
    Snowflake Edition of the account. See more about Snowflake Editions in the official documentation. Valid options are: STANDARD | ENTERPRISE | BUSINESS_CRITICAL
    email str
    Email address of the initial administrative user of the account. This email address is used to send any notifications about the account. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    first_name str
    First name of the initial administrative user of the account. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    fully_qualified_name str
    Fully qualified name of the resource. For more information, see object name resolution.
    grace_period_in_days int
    Specifies the number of days during which the account can be restored (“undropped”). The minimum is 3 days and the maximum is 90 days.
    is_org_admin str
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Sets an account property that determines whether the ORGADMIN role is enabled in the account. Only an organization administrator (i.e. user with the ORGADMIN role) can set the property.
    last_name str
    Last name of the initial administrative user of the account. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    must_change_password str
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Specifies whether the new user created to administer the account is forced to change their password upon first login into the account. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    name str
    Specifies the identifier (i.e. name) for the account. It must be unique within an organization, regardless of which Snowflake Region the account is in and must start with an alphabetic character and cannot contain spaces or special characters except for underscores (_). Note that if the account name includes underscores, features that do not accept account names with underscores (e.g. Okta SSO or SCIM) can reference a version of the account name that substitutes hyphens (-) for the underscores.
    region str
    Snowflake Region ID of the region where the account is created. If no value is provided, Snowflake creates the account in the same Snowflake Region as the current account (i.e. the account in which the CREATE ACCOUNT statement is executed.)
    region_group str
    ID of the region group where the account is created. To retrieve the region group ID for existing accounts in your organization, execute the SHOW REGIONS command. For information about when you might need to specify region group, see Region groups.
    show_outputs Sequence[AccountShowOutputArgs]
    Outputs the result of SHOW ACCOUNTS for the given account.
    adminName String
    Login name of the initial administrative user of the account. A new user is created in the new account with this name and password and granted the ACCOUNTADMIN role in the account. A login name can be any string consisting of letters, numbers, and underscores. Login names are always case-insensitive. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    adminPassword String
    Password for the initial administrative user of the account. Either adminpassword or adminrsapublickey has to be specified. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    adminRsaPublicKey String
    Assigns a public key to the initial administrative user of the account. Either adminpassword or adminrsapublickey has to be specified. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    adminUserType String
    Used for setting the type of the first user that is assigned the ACCOUNTADMIN role during account creation. Valid options are: PERSON | SERVICE | LEGACY_SERVICE External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    comment String
    Specifies a comment for the account.
    consumptionBillingEntity String
    Determines which billing entity is responsible for the account's consumption-based billing.
    edition String
    Snowflake Edition of the account. See more about Snowflake Editions in the official documentation. Valid options are: STANDARD | ENTERPRISE | BUSINESS_CRITICAL
    email String
    Email address of the initial administrative user of the account. This email address is used to send any notifications about the account. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    firstName String
    First name of the initial administrative user of the account. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    fullyQualifiedName String
    Fully qualified name of the resource. For more information, see object name resolution.
    gracePeriodInDays Number
    Specifies the number of days during which the account can be restored (“undropped”). The minimum is 3 days and the maximum is 90 days.
    isOrgAdmin String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Sets an account property that determines whether the ORGADMIN role is enabled in the account. Only an organization administrator (i.e. user with the ORGADMIN role) can set the property.
    lastName String
    Last name of the initial administrative user of the account. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    mustChangePassword String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Specifies whether the new user created to administer the account is forced to change their password upon first login into the account. This field cannot be used whenever adminusertype is set to SERVICE. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
    name String
    Specifies the identifier (i.e. name) for the account. It must be unique within an organization, regardless of which Snowflake Region the account is in and must start with an alphabetic character and cannot contain spaces or special characters except for underscores (_). Note that if the account name includes underscores, features that do not accept account names with underscores (e.g. Okta SSO or SCIM) can reference a version of the account name that substitutes hyphens (-) for the underscores.
    region String
    Snowflake Region ID of the region where the account is created. If no value is provided, Snowflake creates the account in the same Snowflake Region as the current account (i.e. the account in which the CREATE ACCOUNT statement is executed.)
    regionGroup String
    ID of the region group where the account is created. To retrieve the region group ID for existing accounts in your organization, execute the SHOW REGIONS command. For information about when you might need to specify region group, see Region groups.
    showOutputs List<Property Map>
    Outputs the result of SHOW ACCOUNTS for the given account.

    Supporting Types

    AccountShowOutput, AccountShowOutputArgs

    Import

    $ pulumi import snowflake:index/account:Account example '"<organization_name>"."<account_name>"'
    

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

    Package Details

    Repository
    Snowflake pulumi/pulumi-snowflake
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the snowflake Terraform Provider.
    snowflake logo
    Viewing docs for Snowflake v2.13.0
    published on Thursday, Feb 26, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.