1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. rds
  5. Account
Alibaba Cloud v3.76.0 published on Tuesday, Apr 8, 2025 by Pulumi

alicloud.rds.Account

Explore with Pulumi AI

Provides an RDS account resource and used to manage databases.

DEPRECATED: This resource has been deprecated from version 1.120.0. Please use new resource alicloud_rds_account.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";

const config = new pulumi.Config();
const creation = config.get("creation") || "Rds";
const name = config.get("name") || "dbaccountmysql";
const _default = alicloud.getZones({
    availableResourceCreation: creation,
});
const defaultNetwork = new alicloud.vpc.Network("default", {
    vpcName: name,
    cidrBlock: "172.16.0.0/16",
});
const defaultSwitch = new alicloud.vpc.Switch("default", {
    vpcId: defaultNetwork.id,
    cidrBlock: "172.16.0.0/24",
    zoneId: _default.then(_default => _default.zones?.[0]?.id),
    vswitchName: name,
});
const instance = new alicloud.rds.Instance("instance", {
    engine: "MySQL",
    engineVersion: "5.6",
    instanceType: "rds.mysql.s1.small",
    instanceStorage: 10,
    vswitchId: defaultSwitch.id,
    instanceName: name,
});
const account = new alicloud.rds.Account("account", {
    instanceId: instance.id,
    name: "tftestnormal",
    password: "Test12345",
});
Copy
import pulumi
import pulumi_alicloud as alicloud

config = pulumi.Config()
creation = config.get("creation")
if creation is None:
    creation = "Rds"
name = config.get("name")
if name is None:
    name = "dbaccountmysql"
default = alicloud.get_zones(available_resource_creation=creation)
default_network = alicloud.vpc.Network("default",
    vpc_name=name,
    cidr_block="172.16.0.0/16")
default_switch = alicloud.vpc.Switch("default",
    vpc_id=default_network.id,
    cidr_block="172.16.0.0/24",
    zone_id=default.zones[0].id,
    vswitch_name=name)
instance = alicloud.rds.Instance("instance",
    engine="MySQL",
    engine_version="5.6",
    instance_type="rds.mysql.s1.small",
    instance_storage=10,
    vswitch_id=default_switch.id,
    instance_name=name)
account = alicloud.rds.Account("account",
    instance_id=instance.id,
    name="tftestnormal",
    password="Test12345")
Copy
package main

import (
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud"
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/rds"
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/vpc"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		cfg := config.New(ctx, "")
		creation := "Rds"
		if param := cfg.Get("creation"); param != "" {
			creation = param
		}
		name := "dbaccountmysql"
		if param := cfg.Get("name"); param != "" {
			name = param
		}
		_default, err := alicloud.GetZones(ctx, &alicloud.GetZonesArgs{
			AvailableResourceCreation: pulumi.StringRef(creation),
		}, nil)
		if err != nil {
			return err
		}
		defaultNetwork, err := vpc.NewNetwork(ctx, "default", &vpc.NetworkArgs{
			VpcName:   pulumi.String(name),
			CidrBlock: pulumi.String("172.16.0.0/16"),
		})
		if err != nil {
			return err
		}
		defaultSwitch, err := vpc.NewSwitch(ctx, "default", &vpc.SwitchArgs{
			VpcId:       defaultNetwork.ID(),
			CidrBlock:   pulumi.String("172.16.0.0/24"),
			ZoneId:      pulumi.String(_default.Zones[0].Id),
			VswitchName: pulumi.String(name),
		})
		if err != nil {
			return err
		}
		instance, err := rds.NewInstance(ctx, "instance", &rds.InstanceArgs{
			Engine:          pulumi.String("MySQL"),
			EngineVersion:   pulumi.String("5.6"),
			InstanceType:    pulumi.String("rds.mysql.s1.small"),
			InstanceStorage: pulumi.Int(10),
			VswitchId:       defaultSwitch.ID(),
			InstanceName:    pulumi.String(name),
		})
		if err != nil {
			return err
		}
		_, err = rds.NewAccount(ctx, "account", &rds.AccountArgs{
			InstanceId: instance.ID(),
			Name:       pulumi.String("tftestnormal"),
			Password:   pulumi.String("Test12345"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;

return await Deployment.RunAsync(() => 
{
    var config = new Config();
    var creation = config.Get("creation") ?? "Rds";
    var name = config.Get("name") ?? "dbaccountmysql";
    var @default = AliCloud.GetZones.Invoke(new()
    {
        AvailableResourceCreation = creation,
    });

    var defaultNetwork = new AliCloud.Vpc.Network("default", new()
    {
        VpcName = name,
        CidrBlock = "172.16.0.0/16",
    });

    var defaultSwitch = new AliCloud.Vpc.Switch("default", new()
    {
        VpcId = defaultNetwork.Id,
        CidrBlock = "172.16.0.0/24",
        ZoneId = @default.Apply(@default => @default.Apply(getZonesResult => getZonesResult.Zones[0]?.Id)),
        VswitchName = name,
    });

    var instance = new AliCloud.Rds.Instance("instance", new()
    {
        Engine = "MySQL",
        EngineVersion = "5.6",
        InstanceType = "rds.mysql.s1.small",
        InstanceStorage = 10,
        VswitchId = defaultSwitch.Id,
        InstanceName = name,
    });

    var account = new AliCloud.Rds.Account("account", new()
    {
        InstanceId = instance.Id,
        Name = "tftestnormal",
        Password = "Test12345",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.AlicloudFunctions;
import com.pulumi.alicloud.inputs.GetZonesArgs;
import com.pulumi.alicloud.vpc.Network;
import com.pulumi.alicloud.vpc.NetworkArgs;
import com.pulumi.alicloud.vpc.Switch;
import com.pulumi.alicloud.vpc.SwitchArgs;
import com.pulumi.alicloud.rds.Instance;
import com.pulumi.alicloud.rds.InstanceArgs;
import com.pulumi.alicloud.rds.Account;
import com.pulumi.alicloud.rds.AccountArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        final var config = ctx.config();
        final var creation = config.get("creation").orElse("Rds");
        final var name = config.get("name").orElse("dbaccountmysql");
        final var default = AlicloudFunctions.getZones(GetZonesArgs.builder()
            .availableResourceCreation(creation)
            .build());

        var defaultNetwork = new Network("defaultNetwork", NetworkArgs.builder()
            .vpcName(name)
            .cidrBlock("172.16.0.0/16")
            .build());

        var defaultSwitch = new Switch("defaultSwitch", SwitchArgs.builder()
            .vpcId(defaultNetwork.id())
            .cidrBlock("172.16.0.0/24")
            .zoneId(default_.zones()[0].id())
            .vswitchName(name)
            .build());

        var instance = new Instance("instance", InstanceArgs.builder()
            .engine("MySQL")
            .engineVersion("5.6")
            .instanceType("rds.mysql.s1.small")
            .instanceStorage("10")
            .vswitchId(defaultSwitch.id())
            .instanceName(name)
            .build());

        var account = new Account("account", AccountArgs.builder()
            .instanceId(instance.id())
            .name("tftestnormal")
            .password("Test12345")
            .build());

    }
}
Copy
configuration:
  creation:
    type: string
    default: Rds
  name:
    type: string
    default: dbaccountmysql
resources:
  defaultNetwork:
    type: alicloud:vpc:Network
    name: default
    properties:
      vpcName: ${name}
      cidrBlock: 172.16.0.0/16
  defaultSwitch:
    type: alicloud:vpc:Switch
    name: default
    properties:
      vpcId: ${defaultNetwork.id}
      cidrBlock: 172.16.0.0/24
      zoneId: ${default.zones[0].id}
      vswitchName: ${name}
  instance:
    type: alicloud:rds:Instance
    properties:
      engine: MySQL
      engineVersion: '5.6'
      instanceType: rds.mysql.s1.small
      instanceStorage: '10'
      vswitchId: ${defaultSwitch.id}
      instanceName: ${name}
  account:
    type: alicloud:rds:Account
    properties:
      instanceId: ${instance.id}
      name: tftestnormal
      password: Test12345
variables:
  default:
    fn::invoke:
      function: alicloud:getZones
      arguments:
        availableResourceCreation: ${creation}
Copy

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: Optional[AccountArgs] = None,
            opts: Optional[ResourceOptions] = None)

@overload
def Account(resource_name: str,
            opts: Optional[ResourceOptions] = None,
            account_description: Optional[str] = None,
            account_name: Optional[str] = None,
            account_password: Optional[str] = None,
            account_type: Optional[str] = None,
            db_instance_id: Optional[str] = None,
            description: Optional[str] = None,
            instance_id: Optional[str] = None,
            kms_encrypted_password: Optional[str] = None,
            kms_encryption_context: Optional[Mapping[str, str]] = None,
            name: Optional[str] = None,
            password: Optional[str] = None,
            reset_permission_flag: Optional[bool] = None,
            type: Optional[str] = None)
func NewAccount(ctx *Context, name string, args *AccountArgs, opts ...ResourceOption) (*Account, error)
public Account(string name, AccountArgs? args = null, CustomResourceOptions? opts = null)
public Account(String name, AccountArgs args)
public Account(String name, AccountArgs args, CustomResourceOptions options)
type: alicloud:rds:Account
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. String
The unique name of the resource.
args This property is required. 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 exampleaccountResourceResourceFromRdsaccount = new AliCloud.Rds.Account("exampleaccountResourceResourceFromRdsaccount", new()
{
    AccountDescription = "string",
    AccountName = "string",
    AccountPassword = "string",
    AccountType = "string",
    DbInstanceId = "string",
    KmsEncryptedPassword = "string",
    KmsEncryptionContext = 
    {
        { "string", "string" },
    },
    ResetPermissionFlag = false,
});
Copy
example, err := rds.NewAccount(ctx, "exampleaccountResourceResourceFromRdsaccount", &rds.AccountArgs{
	AccountDescription:   pulumi.String("string"),
	AccountName:          pulumi.String("string"),
	AccountPassword:      pulumi.String("string"),
	AccountType:          pulumi.String("string"),
	DbInstanceId:         pulumi.String("string"),
	KmsEncryptedPassword: pulumi.String("string"),
	KmsEncryptionContext: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	ResetPermissionFlag: pulumi.Bool(false),
})
Copy
var exampleaccountResourceResourceFromRdsaccount = new Account("exampleaccountResourceResourceFromRdsaccount", AccountArgs.builder()
    .accountDescription("string")
    .accountName("string")
    .accountPassword("string")
    .accountType("string")
    .dbInstanceId("string")
    .kmsEncryptedPassword("string")
    .kmsEncryptionContext(Map.of("string", "string"))
    .resetPermissionFlag(false)
    .build());
Copy
exampleaccount_resource_resource_from_rdsaccount = alicloud.rds.Account("exampleaccountResourceResourceFromRdsaccount",
    account_description="string",
    account_name="string",
    account_password="string",
    account_type="string",
    db_instance_id="string",
    kms_encrypted_password="string",
    kms_encryption_context={
        "string": "string",
    },
    reset_permission_flag=False)
Copy
const exampleaccountResourceResourceFromRdsaccount = new alicloud.rds.Account("exampleaccountResourceResourceFromRdsaccount", {
    accountDescription: "string",
    accountName: "string",
    accountPassword: "string",
    accountType: "string",
    dbInstanceId: "string",
    kmsEncryptedPassword: "string",
    kmsEncryptionContext: {
        string: "string",
    },
    resetPermissionFlag: false,
});
Copy
type: alicloud:rds:Account
properties:
    accountDescription: string
    accountName: string
    accountPassword: string
    accountType: string
    dbInstanceId: string
    kmsEncryptedPassword: string
    kmsEncryptionContext:
        string: string
    resetPermissionFlag: false
Copy

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:

AccountDescription string
AccountName Changes to this property will trigger replacement. string
AccountPassword string
AccountType Changes to this property will trigger replacement. string
DbInstanceId Changes to this property will trigger replacement. string
Description string
Database description. It cannot begin with https://. It must start with a Chinese character or English letter. It can include Chinese and English characters, underlines (_), hyphens (-), and numbers. The length may be 2-256 characters.

Deprecated: Field 'description' has been deprecated from provider version 1.120.0. New field 'account_description' instead.

InstanceId Changes to this property will trigger replacement. string
The Id of instance in which account belongs.

Deprecated: Field 'instance_id' has been deprecated from provider version 1.120.0. New field 'db_instance_id' instead.

KmsEncryptedPassword string
An KMS encrypts password used to a db account. If the password is filled in, this field will be ignored.
KmsEncryptionContext Dictionary<string, string>
An KMS encryption context used to decrypt kms_encrypted_password before creating or updating a db account with kms_encrypted_password. See Encryption Context. It is valid when kms_encrypted_password is set.
Name Changes to this property will trigger replacement. string
Operation account requiring a uniqueness check. It may consist of lower case letters, numbers, and underlines, and must start with a letter and have no more than 16 characters.

Deprecated: Field 'name' has been deprecated from provider version 1.120.0. New field 'account_name' instead.

Password string
Operation password. It may consist of letters, digits, or underlines, with a length of 6 to 32 characters. You have to specify one of password and kms_encrypted_password fields.

Deprecated: Field 'password' has been deprecated from provider version 1.120.0. New field 'account_password' instead.

ResetPermissionFlag bool
Type Changes to this property will trigger replacement. string

Privilege type of account. The SQLServer engine does not support create high privilege accounts.

  • Normal: Common privilege.
  • Super: High privilege.

Default to Normal.

Deprecated: Field 'type' has been deprecated from provider version 1.120.0. New field 'account_type' instead.

AccountDescription string
AccountName Changes to this property will trigger replacement. string
AccountPassword string
AccountType Changes to this property will trigger replacement. string
DbInstanceId Changes to this property will trigger replacement. string
Description string
Database description. It cannot begin with https://. It must start with a Chinese character or English letter. It can include Chinese and English characters, underlines (_), hyphens (-), and numbers. The length may be 2-256 characters.

Deprecated: Field 'description' has been deprecated from provider version 1.120.0. New field 'account_description' instead.

InstanceId Changes to this property will trigger replacement. string
The Id of instance in which account belongs.

Deprecated: Field 'instance_id' has been deprecated from provider version 1.120.0. New field 'db_instance_id' instead.

KmsEncryptedPassword string
An KMS encrypts password used to a db account. If the password is filled in, this field will be ignored.
KmsEncryptionContext map[string]string
An KMS encryption context used to decrypt kms_encrypted_password before creating or updating a db account with kms_encrypted_password. See Encryption Context. It is valid when kms_encrypted_password is set.
Name Changes to this property will trigger replacement. string
Operation account requiring a uniqueness check. It may consist of lower case letters, numbers, and underlines, and must start with a letter and have no more than 16 characters.

Deprecated: Field 'name' has been deprecated from provider version 1.120.0. New field 'account_name' instead.

Password string
Operation password. It may consist of letters, digits, or underlines, with a length of 6 to 32 characters. You have to specify one of password and kms_encrypted_password fields.

Deprecated: Field 'password' has been deprecated from provider version 1.120.0. New field 'account_password' instead.

ResetPermissionFlag bool
Type Changes to this property will trigger replacement. string

Privilege type of account. The SQLServer engine does not support create high privilege accounts.

  • Normal: Common privilege.
  • Super: High privilege.

Default to Normal.

Deprecated: Field 'type' has been deprecated from provider version 1.120.0. New field 'account_type' instead.

accountDescription String
accountName Changes to this property will trigger replacement. String
accountPassword String
accountType Changes to this property will trigger replacement. String
dbInstanceId Changes to this property will trigger replacement. String
description String
Database description. It cannot begin with https://. It must start with a Chinese character or English letter. It can include Chinese and English characters, underlines (_), hyphens (-), and numbers. The length may be 2-256 characters.

Deprecated: Field 'description' has been deprecated from provider version 1.120.0. New field 'account_description' instead.

instanceId Changes to this property will trigger replacement. String
The Id of instance in which account belongs.

Deprecated: Field 'instance_id' has been deprecated from provider version 1.120.0. New field 'db_instance_id' instead.

kmsEncryptedPassword String
An KMS encrypts password used to a db account. If the password is filled in, this field will be ignored.
kmsEncryptionContext Map<String,String>
An KMS encryption context used to decrypt kms_encrypted_password before creating or updating a db account with kms_encrypted_password. See Encryption Context. It is valid when kms_encrypted_password is set.
name Changes to this property will trigger replacement. String
Operation account requiring a uniqueness check. It may consist of lower case letters, numbers, and underlines, and must start with a letter and have no more than 16 characters.

Deprecated: Field 'name' has been deprecated from provider version 1.120.0. New field 'account_name' instead.

password String
Operation password. It may consist of letters, digits, or underlines, with a length of 6 to 32 characters. You have to specify one of password and kms_encrypted_password fields.

Deprecated: Field 'password' has been deprecated from provider version 1.120.0. New field 'account_password' instead.

resetPermissionFlag Boolean
type Changes to this property will trigger replacement. String

Privilege type of account. The SQLServer engine does not support create high privilege accounts.

  • Normal: Common privilege.
  • Super: High privilege.

Default to Normal.

Deprecated: Field 'type' has been deprecated from provider version 1.120.0. New field 'account_type' instead.

accountDescription string
accountName Changes to this property will trigger replacement. string
accountPassword string
accountType Changes to this property will trigger replacement. string
dbInstanceId Changes to this property will trigger replacement. string
description string
Database description. It cannot begin with https://. It must start with a Chinese character or English letter. It can include Chinese and English characters, underlines (_), hyphens (-), and numbers. The length may be 2-256 characters.

Deprecated: Field 'description' has been deprecated from provider version 1.120.0. New field 'account_description' instead.

instanceId Changes to this property will trigger replacement. string
The Id of instance in which account belongs.

Deprecated: Field 'instance_id' has been deprecated from provider version 1.120.0. New field 'db_instance_id' instead.

kmsEncryptedPassword string
An KMS encrypts password used to a db account. If the password is filled in, this field will be ignored.
kmsEncryptionContext {[key: string]: string}
An KMS encryption context used to decrypt kms_encrypted_password before creating or updating a db account with kms_encrypted_password. See Encryption Context. It is valid when kms_encrypted_password is set.
name Changes to this property will trigger replacement. string
Operation account requiring a uniqueness check. It may consist of lower case letters, numbers, and underlines, and must start with a letter and have no more than 16 characters.

Deprecated: Field 'name' has been deprecated from provider version 1.120.0. New field 'account_name' instead.

password string
Operation password. It may consist of letters, digits, or underlines, with a length of 6 to 32 characters. You have to specify one of password and kms_encrypted_password fields.

Deprecated: Field 'password' has been deprecated from provider version 1.120.0. New field 'account_password' instead.

resetPermissionFlag boolean
type Changes to this property will trigger replacement. string

Privilege type of account. The SQLServer engine does not support create high privilege accounts.

  • Normal: Common privilege.
  • Super: High privilege.

Default to Normal.

Deprecated: Field 'type' has been deprecated from provider version 1.120.0. New field 'account_type' instead.

account_description str
account_name Changes to this property will trigger replacement. str
account_password str
account_type Changes to this property will trigger replacement. str
db_instance_id Changes to this property will trigger replacement. str
description str
Database description. It cannot begin with https://. It must start with a Chinese character or English letter. It can include Chinese and English characters, underlines (_), hyphens (-), and numbers. The length may be 2-256 characters.

Deprecated: Field 'description' has been deprecated from provider version 1.120.0. New field 'account_description' instead.

instance_id Changes to this property will trigger replacement. str
The Id of instance in which account belongs.

Deprecated: Field 'instance_id' has been deprecated from provider version 1.120.0. New field 'db_instance_id' instead.

kms_encrypted_password str
An KMS encrypts password used to a db account. If the password is filled in, this field will be ignored.
kms_encryption_context Mapping[str, str]
An KMS encryption context used to decrypt kms_encrypted_password before creating or updating a db account with kms_encrypted_password. See Encryption Context. It is valid when kms_encrypted_password is set.
name Changes to this property will trigger replacement. str
Operation account requiring a uniqueness check. It may consist of lower case letters, numbers, and underlines, and must start with a letter and have no more than 16 characters.

Deprecated: Field 'name' has been deprecated from provider version 1.120.0. New field 'account_name' instead.

password str
Operation password. It may consist of letters, digits, or underlines, with a length of 6 to 32 characters. You have to specify one of password and kms_encrypted_password fields.

Deprecated: Field 'password' has been deprecated from provider version 1.120.0. New field 'account_password' instead.

reset_permission_flag bool
type Changes to this property will trigger replacement. str

Privilege type of account. The SQLServer engine does not support create high privilege accounts.

  • Normal: Common privilege.
  • Super: High privilege.

Default to Normal.

Deprecated: Field 'type' has been deprecated from provider version 1.120.0. New field 'account_type' instead.

accountDescription String
accountName Changes to this property will trigger replacement. String
accountPassword String
accountType Changes to this property will trigger replacement. String
dbInstanceId Changes to this property will trigger replacement. String
description String
Database description. It cannot begin with https://. It must start with a Chinese character or English letter. It can include Chinese and English characters, underlines (_), hyphens (-), and numbers. The length may be 2-256 characters.

Deprecated: Field 'description' has been deprecated from provider version 1.120.0. New field 'account_description' instead.

instanceId Changes to this property will trigger replacement. String
The Id of instance in which account belongs.

Deprecated: Field 'instance_id' has been deprecated from provider version 1.120.0. New field 'db_instance_id' instead.

kmsEncryptedPassword String
An KMS encrypts password used to a db account. If the password is filled in, this field will be ignored.
kmsEncryptionContext Map<String>
An KMS encryption context used to decrypt kms_encrypted_password before creating or updating a db account with kms_encrypted_password. See Encryption Context. It is valid when kms_encrypted_password is set.
name Changes to this property will trigger replacement. String
Operation account requiring a uniqueness check. It may consist of lower case letters, numbers, and underlines, and must start with a letter and have no more than 16 characters.

Deprecated: Field 'name' has been deprecated from provider version 1.120.0. New field 'account_name' instead.

password String
Operation password. It may consist of letters, digits, or underlines, with a length of 6 to 32 characters. You have to specify one of password and kms_encrypted_password fields.

Deprecated: Field 'password' has been deprecated from provider version 1.120.0. New field 'account_password' instead.

resetPermissionFlag Boolean
type Changes to this property will trigger replacement. String

Privilege type of account. The SQLServer engine does not support create high privilege accounts.

  • Normal: Common privilege.
  • Super: High privilege.

Default to Normal.

Deprecated: Field 'type' has been deprecated from provider version 1.120.0. New field 'account_type' instead.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Status string
Id string
The provider-assigned unique ID for this managed resource.
Status string
id String
The provider-assigned unique ID for this managed resource.
status String
id string
The provider-assigned unique ID for this managed resource.
status string
id str
The provider-assigned unique ID for this managed resource.
status str
id String
The provider-assigned unique ID for this managed resource.
status String

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,
        account_description: Optional[str] = None,
        account_name: Optional[str] = None,
        account_password: Optional[str] = None,
        account_type: Optional[str] = None,
        db_instance_id: Optional[str] = None,
        description: Optional[str] = None,
        instance_id: Optional[str] = None,
        kms_encrypted_password: Optional[str] = None,
        kms_encryption_context: Optional[Mapping[str, str]] = None,
        name: Optional[str] = None,
        password: Optional[str] = None,
        reset_permission_flag: Optional[bool] = None,
        status: Optional[str] = None,
        type: Optional[str] = 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: alicloud:rds:Account    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
AccountDescription string
AccountName Changes to this property will trigger replacement. string
AccountPassword string
AccountType Changes to this property will trigger replacement. string
DbInstanceId Changes to this property will trigger replacement. string
Description string
Database description. It cannot begin with https://. It must start with a Chinese character or English letter. It can include Chinese and English characters, underlines (_), hyphens (-), and numbers. The length may be 2-256 characters.

Deprecated: Field 'description' has been deprecated from provider version 1.120.0. New field 'account_description' instead.

InstanceId Changes to this property will trigger replacement. string
The Id of instance in which account belongs.

Deprecated: Field 'instance_id' has been deprecated from provider version 1.120.0. New field 'db_instance_id' instead.

KmsEncryptedPassword string
An KMS encrypts password used to a db account. If the password is filled in, this field will be ignored.
KmsEncryptionContext Dictionary<string, string>
An KMS encryption context used to decrypt kms_encrypted_password before creating or updating a db account with kms_encrypted_password. See Encryption Context. It is valid when kms_encrypted_password is set.
Name Changes to this property will trigger replacement. string
Operation account requiring a uniqueness check. It may consist of lower case letters, numbers, and underlines, and must start with a letter and have no more than 16 characters.

Deprecated: Field 'name' has been deprecated from provider version 1.120.0. New field 'account_name' instead.

Password string
Operation password. It may consist of letters, digits, or underlines, with a length of 6 to 32 characters. You have to specify one of password and kms_encrypted_password fields.

Deprecated: Field 'password' has been deprecated from provider version 1.120.0. New field 'account_password' instead.

ResetPermissionFlag bool
Status string
Type Changes to this property will trigger replacement. string

Privilege type of account. The SQLServer engine does not support create high privilege accounts.

  • Normal: Common privilege.
  • Super: High privilege.

Default to Normal.

Deprecated: Field 'type' has been deprecated from provider version 1.120.0. New field 'account_type' instead.

AccountDescription string
AccountName Changes to this property will trigger replacement. string
AccountPassword string
AccountType Changes to this property will trigger replacement. string
DbInstanceId Changes to this property will trigger replacement. string
Description string
Database description. It cannot begin with https://. It must start with a Chinese character or English letter. It can include Chinese and English characters, underlines (_), hyphens (-), and numbers. The length may be 2-256 characters.

Deprecated: Field 'description' has been deprecated from provider version 1.120.0. New field 'account_description' instead.

InstanceId Changes to this property will trigger replacement. string
The Id of instance in which account belongs.

Deprecated: Field 'instance_id' has been deprecated from provider version 1.120.0. New field 'db_instance_id' instead.

KmsEncryptedPassword string
An KMS encrypts password used to a db account. If the password is filled in, this field will be ignored.
KmsEncryptionContext map[string]string
An KMS encryption context used to decrypt kms_encrypted_password before creating or updating a db account with kms_encrypted_password. See Encryption Context. It is valid when kms_encrypted_password is set.
Name Changes to this property will trigger replacement. string
Operation account requiring a uniqueness check. It may consist of lower case letters, numbers, and underlines, and must start with a letter and have no more than 16 characters.

Deprecated: Field 'name' has been deprecated from provider version 1.120.0. New field 'account_name' instead.

Password string
Operation password. It may consist of letters, digits, or underlines, with a length of 6 to 32 characters. You have to specify one of password and kms_encrypted_password fields.

Deprecated: Field 'password' has been deprecated from provider version 1.120.0. New field 'account_password' instead.

ResetPermissionFlag bool
Status string
Type Changes to this property will trigger replacement. string

Privilege type of account. The SQLServer engine does not support create high privilege accounts.

  • Normal: Common privilege.
  • Super: High privilege.

Default to Normal.

Deprecated: Field 'type' has been deprecated from provider version 1.120.0. New field 'account_type' instead.

accountDescription String
accountName Changes to this property will trigger replacement. String
accountPassword String
accountType Changes to this property will trigger replacement. String
dbInstanceId Changes to this property will trigger replacement. String
description String
Database description. It cannot begin with https://. It must start with a Chinese character or English letter. It can include Chinese and English characters, underlines (_), hyphens (-), and numbers. The length may be 2-256 characters.

Deprecated: Field 'description' has been deprecated from provider version 1.120.0. New field 'account_description' instead.

instanceId Changes to this property will trigger replacement. String
The Id of instance in which account belongs.

Deprecated: Field 'instance_id' has been deprecated from provider version 1.120.0. New field 'db_instance_id' instead.

kmsEncryptedPassword String
An KMS encrypts password used to a db account. If the password is filled in, this field will be ignored.
kmsEncryptionContext Map<String,String>
An KMS encryption context used to decrypt kms_encrypted_password before creating or updating a db account with kms_encrypted_password. See Encryption Context. It is valid when kms_encrypted_password is set.
name Changes to this property will trigger replacement. String
Operation account requiring a uniqueness check. It may consist of lower case letters, numbers, and underlines, and must start with a letter and have no more than 16 characters.

Deprecated: Field 'name' has been deprecated from provider version 1.120.0. New field 'account_name' instead.

password String
Operation password. It may consist of letters, digits, or underlines, with a length of 6 to 32 characters. You have to specify one of password and kms_encrypted_password fields.

Deprecated: Field 'password' has been deprecated from provider version 1.120.0. New field 'account_password' instead.

resetPermissionFlag Boolean
status String
type Changes to this property will trigger replacement. String

Privilege type of account. The SQLServer engine does not support create high privilege accounts.

  • Normal: Common privilege.
  • Super: High privilege.

Default to Normal.

Deprecated: Field 'type' has been deprecated from provider version 1.120.0. New field 'account_type' instead.

accountDescription string
accountName Changes to this property will trigger replacement. string
accountPassword string
accountType Changes to this property will trigger replacement. string
dbInstanceId Changes to this property will trigger replacement. string
description string
Database description. It cannot begin with https://. It must start with a Chinese character or English letter. It can include Chinese and English characters, underlines (_), hyphens (-), and numbers. The length may be 2-256 characters.

Deprecated: Field 'description' has been deprecated from provider version 1.120.0. New field 'account_description' instead.

instanceId Changes to this property will trigger replacement. string
The Id of instance in which account belongs.

Deprecated: Field 'instance_id' has been deprecated from provider version 1.120.0. New field 'db_instance_id' instead.

kmsEncryptedPassword string
An KMS encrypts password used to a db account. If the password is filled in, this field will be ignored.
kmsEncryptionContext {[key: string]: string}
An KMS encryption context used to decrypt kms_encrypted_password before creating or updating a db account with kms_encrypted_password. See Encryption Context. It is valid when kms_encrypted_password is set.
name Changes to this property will trigger replacement. string
Operation account requiring a uniqueness check. It may consist of lower case letters, numbers, and underlines, and must start with a letter and have no more than 16 characters.

Deprecated: Field 'name' has been deprecated from provider version 1.120.0. New field 'account_name' instead.

password string
Operation password. It may consist of letters, digits, or underlines, with a length of 6 to 32 characters. You have to specify one of password and kms_encrypted_password fields.

Deprecated: Field 'password' has been deprecated from provider version 1.120.0. New field 'account_password' instead.

resetPermissionFlag boolean
status string
type Changes to this property will trigger replacement. string

Privilege type of account. The SQLServer engine does not support create high privilege accounts.

  • Normal: Common privilege.
  • Super: High privilege.

Default to Normal.

Deprecated: Field 'type' has been deprecated from provider version 1.120.0. New field 'account_type' instead.

account_description str
account_name Changes to this property will trigger replacement. str
account_password str
account_type Changes to this property will trigger replacement. str
db_instance_id Changes to this property will trigger replacement. str
description str
Database description. It cannot begin with https://. It must start with a Chinese character or English letter. It can include Chinese and English characters, underlines (_), hyphens (-), and numbers. The length may be 2-256 characters.

Deprecated: Field 'description' has been deprecated from provider version 1.120.0. New field 'account_description' instead.

instance_id Changes to this property will trigger replacement. str
The Id of instance in which account belongs.

Deprecated: Field 'instance_id' has been deprecated from provider version 1.120.0. New field 'db_instance_id' instead.

kms_encrypted_password str
An KMS encrypts password used to a db account. If the password is filled in, this field will be ignored.
kms_encryption_context Mapping[str, str]
An KMS encryption context used to decrypt kms_encrypted_password before creating or updating a db account with kms_encrypted_password. See Encryption Context. It is valid when kms_encrypted_password is set.
name Changes to this property will trigger replacement. str
Operation account requiring a uniqueness check. It may consist of lower case letters, numbers, and underlines, and must start with a letter and have no more than 16 characters.

Deprecated: Field 'name' has been deprecated from provider version 1.120.0. New field 'account_name' instead.

password str
Operation password. It may consist of letters, digits, or underlines, with a length of 6 to 32 characters. You have to specify one of password and kms_encrypted_password fields.

Deprecated: Field 'password' has been deprecated from provider version 1.120.0. New field 'account_password' instead.

reset_permission_flag bool
status str
type Changes to this property will trigger replacement. str

Privilege type of account. The SQLServer engine does not support create high privilege accounts.

  • Normal: Common privilege.
  • Super: High privilege.

Default to Normal.

Deprecated: Field 'type' has been deprecated from provider version 1.120.0. New field 'account_type' instead.

accountDescription String
accountName Changes to this property will trigger replacement. String
accountPassword String
accountType Changes to this property will trigger replacement. String
dbInstanceId Changes to this property will trigger replacement. String
description String
Database description. It cannot begin with https://. It must start with a Chinese character or English letter. It can include Chinese and English characters, underlines (_), hyphens (-), and numbers. The length may be 2-256 characters.

Deprecated: Field 'description' has been deprecated from provider version 1.120.0. New field 'account_description' instead.

instanceId Changes to this property will trigger replacement. String
The Id of instance in which account belongs.

Deprecated: Field 'instance_id' has been deprecated from provider version 1.120.0. New field 'db_instance_id' instead.

kmsEncryptedPassword String
An KMS encrypts password used to a db account. If the password is filled in, this field will be ignored.
kmsEncryptionContext Map<String>
An KMS encryption context used to decrypt kms_encrypted_password before creating or updating a db account with kms_encrypted_password. See Encryption Context. It is valid when kms_encrypted_password is set.
name Changes to this property will trigger replacement. String
Operation account requiring a uniqueness check. It may consist of lower case letters, numbers, and underlines, and must start with a letter and have no more than 16 characters.

Deprecated: Field 'name' has been deprecated from provider version 1.120.0. New field 'account_name' instead.

password String
Operation password. It may consist of letters, digits, or underlines, with a length of 6 to 32 characters. You have to specify one of password and kms_encrypted_password fields.

Deprecated: Field 'password' has been deprecated from provider version 1.120.0. New field 'account_password' instead.

resetPermissionFlag Boolean
status String
type Changes to this property will trigger replacement. String

Privilege type of account. The SQLServer engine does not support create high privilege accounts.

  • Normal: Common privilege.
  • Super: High privilege.

Default to Normal.

Deprecated: Field 'type' has been deprecated from provider version 1.120.0. New field 'account_type' instead.

Import

RDS account can be imported using the id, e.g.

$ pulumi import alicloud:rds/account:Account example "rm-12345:tf_account"
Copy

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

Package Details

Repository
Alibaba Cloud pulumi/pulumi-alicloud
License
Apache-2.0
Notes
This Pulumi package is based on the alicloud Terraform Provider.