alicloud.gpdb.Account
Explore with Pulumi AI
Provides a GPDB Account resource.
For information about GPDB Account and how to use it, see What is Account.
NOTE: Available since v1.142.0.
Example Usage
Basic Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var config = new Config();
var name = config.Get("name") ?? "tf-example";
var defaultResourceGroups = AliCloud.ResourceManager.GetResourceGroups.Invoke();
var defaultZones = AliCloud.Gpdb.GetZones.Invoke();
var defaultNetwork = new AliCloud.Vpc.Network("defaultNetwork", new()
{
VpcName = name,
CidrBlock = "10.4.0.0/16",
});
var defaultSwitch = new AliCloud.Vpc.Switch("defaultSwitch", new()
{
VswitchName = name,
CidrBlock = "10.4.0.0/24",
VpcId = defaultNetwork.Id,
ZoneId = defaultZones.Apply(getZonesResult => getZonesResult.Ids[0]),
});
var defaultInstance = new AliCloud.Gpdb.Instance("defaultInstance", new()
{
DbInstanceCategory = "HighAvailability",
DbInstanceClass = "gpdb.group.segsdx1",
DbInstanceMode = "StorageElastic",
Description = name,
Engine = "gpdb",
EngineVersion = "6.0",
ZoneId = defaultZones.Apply(getZonesResult => getZonesResult.Ids[0]),
InstanceNetworkType = "VPC",
InstanceSpec = "2C16G",
MasterNodeNum = 1,
PaymentType = "PayAsYouGo",
PrivateIpAddress = "1.1.1.1",
SegStorageType = "cloud_essd",
SegNodeNum = 4,
StorageSize = 50,
VpcId = defaultNetwork.Id,
VswitchId = defaultSwitch.Id,
IpWhitelists = new[]
{
new AliCloud.Gpdb.Inputs.InstanceIpWhitelistArgs
{
SecurityIpList = "127.0.0.1",
},
},
});
var defaultAccount = new AliCloud.Gpdb.Account("defaultAccount", new()
{
AccountName = "tf_example",
DbInstanceId = defaultInstance.Id,
AccountPassword = "Example1234",
AccountDescription = "tf_example",
});
});
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/gpdb"
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/resourcemanager"
"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, "")
name := "tf-example"
if param := cfg.Get("name"); param != "" {
name = param
}
_, err := resourcemanager.GetResourceGroups(ctx, nil, nil)
if err != nil {
return err
}
defaultZones, err := gpdb.GetZones(ctx, nil, nil)
if err != nil {
return err
}
defaultNetwork, err := vpc.NewNetwork(ctx, "defaultNetwork", &vpc.NetworkArgs{
VpcName: pulumi.String(name),
CidrBlock: pulumi.String("10.4.0.0/16"),
})
if err != nil {
return err
}
defaultSwitch, err := vpc.NewSwitch(ctx, "defaultSwitch", &vpc.SwitchArgs{
VswitchName: pulumi.String(name),
CidrBlock: pulumi.String("10.4.0.0/24"),
VpcId: defaultNetwork.ID(),
ZoneId: *pulumi.String(defaultZones.Ids[0]),
})
if err != nil {
return err
}
defaultInstance, err := gpdb.NewInstance(ctx, "defaultInstance", &gpdb.InstanceArgs{
DbInstanceCategory: pulumi.String("HighAvailability"),
DbInstanceClass: pulumi.String("gpdb.group.segsdx1"),
DbInstanceMode: pulumi.String("StorageElastic"),
Description: pulumi.String(name),
Engine: pulumi.String("gpdb"),
EngineVersion: pulumi.String("6.0"),
ZoneId: *pulumi.String(defaultZones.Ids[0]),
InstanceNetworkType: pulumi.String("VPC"),
InstanceSpec: pulumi.String("2C16G"),
MasterNodeNum: pulumi.Int(1),
PaymentType: pulumi.String("PayAsYouGo"),
PrivateIpAddress: pulumi.String("1.1.1.1"),
SegStorageType: pulumi.String("cloud_essd"),
SegNodeNum: pulumi.Int(4),
StorageSize: pulumi.Int(50),
VpcId: defaultNetwork.ID(),
VswitchId: defaultSwitch.ID(),
IpWhitelists: gpdb.InstanceIpWhitelistArray{
&gpdb.InstanceIpWhitelistArgs{
SecurityIpList: pulumi.String("127.0.0.1"),
},
},
})
if err != nil {
return err
}
_, err = gpdb.NewAccount(ctx, "defaultAccount", &gpdb.AccountArgs{
AccountName: pulumi.String("tf_example"),
DbInstanceId: defaultInstance.ID(),
AccountPassword: pulumi.String("Example1234"),
AccountDescription: pulumi.String("tf_example"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.resourcemanager.ResourcemanagerFunctions;
import com.pulumi.alicloud.resourcemanager.inputs.GetResourceGroupsArgs;
import com.pulumi.alicloud.gpdb.GpdbFunctions;
import com.pulumi.alicloud.gpdb.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.gpdb.Instance;
import com.pulumi.alicloud.gpdb.InstanceArgs;
import com.pulumi.alicloud.gpdb.inputs.InstanceIpWhitelistArgs;
import com.pulumi.alicloud.gpdb.Account;
import com.pulumi.alicloud.gpdb.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 name = config.get("name").orElse("tf-example");
final var defaultResourceGroups = ResourcemanagerFunctions.getResourceGroups();
final var defaultZones = GpdbFunctions.getZones();
var defaultNetwork = new Network("defaultNetwork", NetworkArgs.builder()
.vpcName(name)
.cidrBlock("10.4.0.0/16")
.build());
var defaultSwitch = new Switch("defaultSwitch", SwitchArgs.builder()
.vswitchName(name)
.cidrBlock("10.4.0.0/24")
.vpcId(defaultNetwork.id())
.zoneId(defaultZones.applyValue(getZonesResult -> getZonesResult.ids()[0]))
.build());
var defaultInstance = new Instance("defaultInstance", InstanceArgs.builder()
.dbInstanceCategory("HighAvailability")
.dbInstanceClass("gpdb.group.segsdx1")
.dbInstanceMode("StorageElastic")
.description(name)
.engine("gpdb")
.engineVersion("6.0")
.zoneId(defaultZones.applyValue(getZonesResult -> getZonesResult.ids()[0]))
.instanceNetworkType("VPC")
.instanceSpec("2C16G")
.masterNodeNum(1)
.paymentType("PayAsYouGo")
.privateIpAddress("1.1.1.1")
.segStorageType("cloud_essd")
.segNodeNum(4)
.storageSize(50)
.vpcId(defaultNetwork.id())
.vswitchId(defaultSwitch.id())
.ipWhitelists(InstanceIpWhitelistArgs.builder()
.securityIpList("127.0.0.1")
.build())
.build());
var defaultAccount = new Account("defaultAccount", AccountArgs.builder()
.accountName("tf_example")
.dbInstanceId(defaultInstance.id())
.accountPassword("Example1234")
.accountDescription("tf_example")
.build());
}
}
import pulumi
import pulumi_alicloud as alicloud
config = pulumi.Config()
name = config.get("name")
if name is None:
name = "tf-example"
default_resource_groups = alicloud.resourcemanager.get_resource_groups()
default_zones = alicloud.gpdb.get_zones()
default_network = alicloud.vpc.Network("defaultNetwork",
vpc_name=name,
cidr_block="10.4.0.0/16")
default_switch = alicloud.vpc.Switch("defaultSwitch",
vswitch_name=name,
cidr_block="10.4.0.0/24",
vpc_id=default_network.id,
zone_id=default_zones.ids[0])
default_instance = alicloud.gpdb.Instance("defaultInstance",
db_instance_category="HighAvailability",
db_instance_class="gpdb.group.segsdx1",
db_instance_mode="StorageElastic",
description=name,
engine="gpdb",
engine_version="6.0",
zone_id=default_zones.ids[0],
instance_network_type="VPC",
instance_spec="2C16G",
master_node_num=1,
payment_type="PayAsYouGo",
private_ip_address="1.1.1.1",
seg_storage_type="cloud_essd",
seg_node_num=4,
storage_size=50,
vpc_id=default_network.id,
vswitch_id=default_switch.id,
ip_whitelists=[alicloud.gpdb.InstanceIpWhitelistArgs(
security_ip_list="127.0.0.1",
)])
default_account = alicloud.gpdb.Account("defaultAccount",
account_name="tf_example",
db_instance_id=default_instance.id,
account_password="Example1234",
account_description="tf_example")
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const config = new pulumi.Config();
const name = config.get("name") || "tf-example";
const defaultResourceGroups = alicloud.resourcemanager.getResourceGroups({});
const defaultZones = alicloud.gpdb.getZones({});
const defaultNetwork = new alicloud.vpc.Network("defaultNetwork", {
vpcName: name,
cidrBlock: "10.4.0.0/16",
});
const defaultSwitch = new alicloud.vpc.Switch("defaultSwitch", {
vswitchName: name,
cidrBlock: "10.4.0.0/24",
vpcId: defaultNetwork.id,
zoneId: defaultZones.then(defaultZones => defaultZones.ids?.[0]),
});
const defaultInstance = new alicloud.gpdb.Instance("defaultInstance", {
dbInstanceCategory: "HighAvailability",
dbInstanceClass: "gpdb.group.segsdx1",
dbInstanceMode: "StorageElastic",
description: name,
engine: "gpdb",
engineVersion: "6.0",
zoneId: defaultZones.then(defaultZones => defaultZones.ids?.[0]),
instanceNetworkType: "VPC",
instanceSpec: "2C16G",
masterNodeNum: 1,
paymentType: "PayAsYouGo",
privateIpAddress: "1.1.1.1",
segStorageType: "cloud_essd",
segNodeNum: 4,
storageSize: 50,
vpcId: defaultNetwork.id,
vswitchId: defaultSwitch.id,
ipWhitelists: [{
securityIpList: "127.0.0.1",
}],
});
const defaultAccount = new alicloud.gpdb.Account("defaultAccount", {
accountName: "tf_example",
dbInstanceId: defaultInstance.id,
accountPassword: "Example1234",
accountDescription: "tf_example",
});
configuration:
name:
type: string
default: tf-example
resources:
defaultNetwork:
type: alicloud:vpc:Network
properties:
vpcName: ${name}
cidrBlock: 10.4.0.0/16
defaultSwitch:
type: alicloud:vpc:Switch
properties:
vswitchName: ${name}
cidrBlock: 10.4.0.0/24
vpcId: ${defaultNetwork.id}
zoneId: ${defaultZones.ids[0]}
defaultInstance:
type: alicloud:gpdb:Instance
properties:
dbInstanceCategory: HighAvailability
dbInstanceClass: gpdb.group.segsdx1
dbInstanceMode: StorageElastic
description: ${name}
engine: gpdb
engineVersion: '6.0'
zoneId: ${defaultZones.ids[0]}
instanceNetworkType: VPC
instanceSpec: 2C16G
masterNodeNum: 1
paymentType: PayAsYouGo
privateIpAddress: 1.1.1.1
segStorageType: cloud_essd
segNodeNum: 4
storageSize: 50
vpcId: ${defaultNetwork.id}
vswitchId: ${defaultSwitch.id}
ipWhitelists:
- securityIpList: 127.0.0.1
defaultAccount:
type: alicloud:gpdb:Account
properties:
accountName: tf_example
dbInstanceId: ${defaultInstance.id}
accountPassword: Example1234
accountDescription: tf_example
variables:
defaultResourceGroups:
fn::invoke:
Function: alicloud:resourcemanager:getResourceGroups
Arguments: {}
defaultZones:
fn::invoke:
Function: alicloud:gpdb:getZones
Arguments: {}
Create Account Resource
new Account(name: string, args: AccountArgs, opts?: CustomResourceOptions);
@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,
db_instance_id: Optional[str] = None)
@overload
def Account(resource_name: str,
args: AccountArgs,
opts: Optional[ResourceOptions] = 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: alicloud:gpdb:Account
properties: # The arguments to resource properties.
options: # 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.
- 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.
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
The Account resource accepts the following input properties:
- Account
Name string The name of the account. The account name must be unique and meet the following requirements:
- Starts with a letter.
- Contains only lowercase letters, digits, or underscores (_).
- Be up to 16 characters in length.
- Contains no reserved keywords.
- Account
Password string The password of the account. The password must be 8 to 32 characters in length and contain at least three of the following character types: uppercase letters, lowercase letters, digits, and special characters. Special characters include
! @ # $ % ^ & * ( ) _ + - =
.- Db
Instance stringId The ID of the instance.
- Account
Description string The description of the account.
- Starts with a letter.
- Does not start with
http://
orhttps://
. - Contains letters, underscores (_), hyphens (-), or digits.
- Be 2 to 256 characters in length.
- Account
Name string The name of the account. The account name must be unique and meet the following requirements:
- Starts with a letter.
- Contains only lowercase letters, digits, or underscores (_).
- Be up to 16 characters in length.
- Contains no reserved keywords.
- Account
Password string The password of the account. The password must be 8 to 32 characters in length and contain at least three of the following character types: uppercase letters, lowercase letters, digits, and special characters. Special characters include
! @ # $ % ^ & * ( ) _ + - =
.- Db
Instance stringId The ID of the instance.
- Account
Description string The description of the account.
- Starts with a letter.
- Does not start with
http://
orhttps://
. - Contains letters, underscores (_), hyphens (-), or digits.
- Be 2 to 256 characters in length.
- account
Name String The name of the account. The account name must be unique and meet the following requirements:
- Starts with a letter.
- Contains only lowercase letters, digits, or underscores (_).
- Be up to 16 characters in length.
- Contains no reserved keywords.
- account
Password String The password of the account. The password must be 8 to 32 characters in length and contain at least three of the following character types: uppercase letters, lowercase letters, digits, and special characters. Special characters include
! @ # $ % ^ & * ( ) _ + - =
.- db
Instance StringId The ID of the instance.
- account
Description String The description of the account.
- Starts with a letter.
- Does not start with
http://
orhttps://
. - Contains letters, underscores (_), hyphens (-), or digits.
- Be 2 to 256 characters in length.
- account
Name string The name of the account. The account name must be unique and meet the following requirements:
- Starts with a letter.
- Contains only lowercase letters, digits, or underscores (_).
- Be up to 16 characters in length.
- Contains no reserved keywords.
- account
Password string The password of the account. The password must be 8 to 32 characters in length and contain at least three of the following character types: uppercase letters, lowercase letters, digits, and special characters. Special characters include
! @ # $ % ^ & * ( ) _ + - =
.- db
Instance stringId The ID of the instance.
- account
Description string The description of the account.
- Starts with a letter.
- Does not start with
http://
orhttps://
. - Contains letters, underscores (_), hyphens (-), or digits.
- Be 2 to 256 characters in length.
- account_
name str The name of the account. The account name must be unique and meet the following requirements:
- Starts with a letter.
- Contains only lowercase letters, digits, or underscores (_).
- Be up to 16 characters in length.
- Contains no reserved keywords.
- account_
password str The password of the account. The password must be 8 to 32 characters in length and contain at least three of the following character types: uppercase letters, lowercase letters, digits, and special characters. Special characters include
! @ # $ % ^ & * ( ) _ + - =
.- db_
instance_ strid The ID of the instance.
- account_
description str The description of the account.
- Starts with a letter.
- Does not start with
http://
orhttps://
. - Contains letters, underscores (_), hyphens (-), or digits.
- Be 2 to 256 characters in length.
- account
Name String The name of the account. The account name must be unique and meet the following requirements:
- Starts with a letter.
- Contains only lowercase letters, digits, or underscores (_).
- Be up to 16 characters in length.
- Contains no reserved keywords.
- account
Password String The password of the account. The password must be 8 to 32 characters in length and contain at least three of the following character types: uppercase letters, lowercase letters, digits, and special characters. Special characters include
! @ # $ % ^ & * ( ) _ + - =
.- db
Instance StringId The ID of the instance.
- account
Description String The description of the account.
- Starts with a letter.
- Does not start with
http://
orhttps://
. - Contains letters, underscores (_), hyphens (-), or digits.
- Be 2 to 256 characters in length.
Outputs
All input properties are implicitly available as output properties. Additionally, the Account resource produces the following output properties:
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,
db_instance_id: Optional[str] = None,
status: 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)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Account
Description string The description of the account.
- Starts with a letter.
- Does not start with
http://
orhttps://
. - Contains letters, underscores (_), hyphens (-), or digits.
- Be 2 to 256 characters in length.
- Account
Name string The name of the account. The account name must be unique and meet the following requirements:
- Starts with a letter.
- Contains only lowercase letters, digits, or underscores (_).
- Be up to 16 characters in length.
- Contains no reserved keywords.
- Account
Password string The password of the account. The password must be 8 to 32 characters in length and contain at least three of the following character types: uppercase letters, lowercase letters, digits, and special characters. Special characters include
! @ # $ % ^ & * ( ) _ + - =
.- Db
Instance stringId The ID of the instance.
- Status string
The status of the account. Valid values:
Active
,Creating
andDeleting
.
- Account
Description string The description of the account.
- Starts with a letter.
- Does not start with
http://
orhttps://
. - Contains letters, underscores (_), hyphens (-), or digits.
- Be 2 to 256 characters in length.
- Account
Name string The name of the account. The account name must be unique and meet the following requirements:
- Starts with a letter.
- Contains only lowercase letters, digits, or underscores (_).
- Be up to 16 characters in length.
- Contains no reserved keywords.
- Account
Password string The password of the account. The password must be 8 to 32 characters in length and contain at least three of the following character types: uppercase letters, lowercase letters, digits, and special characters. Special characters include
! @ # $ % ^ & * ( ) _ + - =
.- Db
Instance stringId The ID of the instance.
- Status string
The status of the account. Valid values:
Active
,Creating
andDeleting
.
- account
Description String The description of the account.
- Starts with a letter.
- Does not start with
http://
orhttps://
. - Contains letters, underscores (_), hyphens (-), or digits.
- Be 2 to 256 characters in length.
- account
Name String The name of the account. The account name must be unique and meet the following requirements:
- Starts with a letter.
- Contains only lowercase letters, digits, or underscores (_).
- Be up to 16 characters in length.
- Contains no reserved keywords.
- account
Password String The password of the account. The password must be 8 to 32 characters in length and contain at least three of the following character types: uppercase letters, lowercase letters, digits, and special characters. Special characters include
! @ # $ % ^ & * ( ) _ + - =
.- db
Instance StringId The ID of the instance.
- status String
The status of the account. Valid values:
Active
,Creating
andDeleting
.
- account
Description string The description of the account.
- Starts with a letter.
- Does not start with
http://
orhttps://
. - Contains letters, underscores (_), hyphens (-), or digits.
- Be 2 to 256 characters in length.
- account
Name string The name of the account. The account name must be unique and meet the following requirements:
- Starts with a letter.
- Contains only lowercase letters, digits, or underscores (_).
- Be up to 16 characters in length.
- Contains no reserved keywords.
- account
Password string The password of the account. The password must be 8 to 32 characters in length and contain at least three of the following character types: uppercase letters, lowercase letters, digits, and special characters. Special characters include
! @ # $ % ^ & * ( ) _ + - =
.- db
Instance stringId The ID of the instance.
- status string
The status of the account. Valid values:
Active
,Creating
andDeleting
.
- account_
description str The description of the account.
- Starts with a letter.
- Does not start with
http://
orhttps://
. - Contains letters, underscores (_), hyphens (-), or digits.
- Be 2 to 256 characters in length.
- account_
name str The name of the account. The account name must be unique and meet the following requirements:
- Starts with a letter.
- Contains only lowercase letters, digits, or underscores (_).
- Be up to 16 characters in length.
- Contains no reserved keywords.
- account_
password str The password of the account. The password must be 8 to 32 characters in length and contain at least three of the following character types: uppercase letters, lowercase letters, digits, and special characters. Special characters include
! @ # $ % ^ & * ( ) _ + - =
.- db_
instance_ strid The ID of the instance.
- status str
The status of the account. Valid values:
Active
,Creating
andDeleting
.
- account
Description String The description of the account.
- Starts with a letter.
- Does not start with
http://
orhttps://
. - Contains letters, underscores (_), hyphens (-), or digits.
- Be 2 to 256 characters in length.
- account
Name String The name of the account. The account name must be unique and meet the following requirements:
- Starts with a letter.
- Contains only lowercase letters, digits, or underscores (_).
- Be up to 16 characters in length.
- Contains no reserved keywords.
- account
Password String The password of the account. The password must be 8 to 32 characters in length and contain at least three of the following character types: uppercase letters, lowercase letters, digits, and special characters. Special characters include
! @ # $ % ^ & * ( ) _ + - =
.- db
Instance StringId The ID of the instance.
- status String
The status of the account. Valid values:
Active
,Creating
andDeleting
.
Import
GPDB Account can be imported using the id, e.g.
$ pulumi import alicloud:gpdb/account:Account example <db_instance_id>:<account_name>
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
alicloud
Terraform Provider.