alicloud_gpdb_elastic_instance
更新时间:
Provides a AnalyticDB for PostgreSQL instance resource which storage type is flexible. Compared to the reserved storage ADB PG instance, you can scale up each disk and smoothly scale out nodes online.
For more detail product introduction, see here.
-> DEPRECATED: This resource has been deprecated from version 1.147.0
. Please use new resource alicloud_gpdb_instance.
-> NOTE: Available in 1.127.0+
Example Usage
Create a AnalyticDB for PostgreSQL instance
data "alicloud_zones" "default" {
available_resource_creation = "Gpdb"
}
resource "alicloud_vpc" "default" {
name = "vpc-123456"
cidr_block = "172.16.0.0/16"
}
resource "alicloud_vswitch" "default" {
zone_id = data.alicloud_zones.default.zones[0].id
vpc_id = alicloud_vpc.default.id
cidr_block = "172.16.0.0/24"
vswitch_name = "vpc-123456"
}
resource "alicloud_gpdb_elastic_instance" "adb_pg_instance" {
engine = "gpdb"
engine_version = "6.0"
seg_storage_type = "cloud_essd"
seg_node_num = 4
storage_size = 50
instance_spec = "2C16G"
db_instance_description = "Created by terraform"
instance_network_type = "VPC"
payment_type = "PayAsYouGo"
vswitch_id = alicloud_vswitch.default.id
}
Argument Reference
The following arguments are supported:
engine
(Required, ForceNew) Database engine:gpdb
.engine_version
- (Required, ForceNew) Database version. Valid value is6.0
.seg_storage_type
- (Required, ForceNew) The disk type of segment nodes. Valid values:cloud_essd
,cloud_efficiency
.seg_node_num
- (Required, ForceNew) The number of segment nodes. Minimum is4
, max is256
, step is4
.storage_size
- (Required, ForceNew) The storage capacity of per segment node. Unit: GB. Minimum is50
, max is4000
, step is50
.instance_spec
- (Required, ForceNew) The specification of segment nodes.- When
db_instance_category
isHighAvailability
, Valid values:2C16G
,4C32G
,16C128G
. - When
db_instance_category
isBasic
, Valid values:2C8G
,4C16G
,8C32G
,16C64G
.
- When
db_instance_category
- (Optional, ForceNew, Available in v1.158.0+) The edition of the instance. Valid values:Basic
,HighAvailability
. Default value:HighAvailability
.db_instance_description
- (Optional) The description of ADB PG instance. It is a string of 2 to 256 characters.instance_network_type
- (Optional, ForceNew) The network type of ADB PG instance. OnlyVPC
supported now.payment_type
- (Optional, ForceNew) Valid values arePayAsYouGo
,Subscription
. Default toPayAsYouGo
.payment_duration_unit
- (Optional) The unit of the subscription period. Valid values:Month
,Year
. It is valid when payment_type isSubscription
.
NOTE: Will not take effect after modifyingpayment_duration_unit
for now, if you want to renew a PayAsYouGo instance, need to do in on aliyun console.payment_duration
- (Optional) The subscription period. Valid values: [1~12]. It is valid when payment_type isSubscription
.
NOTE: Will not take effect after modifyingpayment_duration
for now, if you want to renew a PayAsYouGo instance, need to do in on aliyun console.zone_id
- (Optional, ForceNew) The Zone to launch the ADB PG instance. If specified, must be consistent with the zone where the vswitch is located.vswitch_id
- (Required, ForceNew) The virtual switch ID to launch ADB PG instances in one VPC.security_ip_list
- (Optional) List of IP addresses allowed to access all databases of an instance. The list contains up to 1,000 IP addresses, separated by commas. Supported formats include 0.0.0.0/0, 10.23.12.24 (IP), and 10.23.12.24/24 (Classless Inter-Domain Routing (CIDR) mode. /24 represents the length of the prefix in an IP address. The range of the prefix length is [1,32]).tags
- (Optional, Available in v1.158.0+) A mapping of tags to assign to the resource.encryption_key
- (Optional, ForceNew, Available in v1.158.0+) The ID of the encryption key. Note: If theencryption_type
parameter is set toCloudDisk
, you must specify this parameter to the encryption key that is in the same region as the disk that is specified by the EncryptionType parameter. Otherwise, leave this parameter empty.encryption_type
- (Optional, ForceNew, Available in v1.158.0+) The type of the encryption. Valid values:CloudDisk
. Note: Disk encryption cannot be disabled after it is enabled.
Timeouts
-> NOTE: Available in 1.127.0+.
The timeouts
block allows you to specify timeouts for certain actions:
create
- (Defaults to 60 mins) Used when creating the ADB PG instance (until it reaches the initialRunning
status).update
- (Defaults to 30 mins) Used when updating the ADB PG instance (until it reaches the initialRunning
status).delete
- (Defaults to 10 mins) Used when terminating the ADB PG instance.
Attributes Reference
The following attributes are exported:
id
- The ID of the Instance.connection_string
- ADB PG instance connection string.port
- (Available in 1.196.0+) The connection port of the instance.status
- Instance status.
Import
AnalyticDB for PostgreSQL can be imported using the id, e.g.
$ terraform import alicloud_gpdb_elastic_instance.adb_pg_instance gp-bpxxxxxxxxxxxxxx
文档内容是否对您有帮助?