Up-to-date reference of API arguments for DWS cluster you can get at documentation portal
opentelekomcloud_dws_cluster_v1¶
Manages Cluster in the Data Warehouse Service.
Example Usage¶
Dws Cluster Example¶
variable "availability_zone" {}
variable "network_id" {}
variable "vpc_id" {}
variable "security_group_id" {}
resource "opentelekomcloud_dws_cluster_v1" "cluster_1" {
name = "my_dws_cluster"
user_name = "dbadmin"
user_pwd = "#dbadmin123"
node_type = "dws.m3.xlarge"
number_of_node = 3
network_id = var.network_id
security_group_id = var.security_group_id
vpc_id = var.vpc_id
availability_zone = var.availability_zone
port = 8899
public_ip {
public_bind_type = "auto_assign"
}
}
Argument Reference¶
The following arguments are supported:
name
- (Required, String, ForceNew) Cluster name, which must be unique and contains 4 to 64 characters, which consist of letters, digits, hyphens(-), or underscores(_) only and must start with a letter.network_id
- (Required, String, ForceNew) Network ID, which is used for configuring cluster network.node_type
- (Required, String, ForceNew) Node type.number_of_node
- (Required, Int) Number of nodes in a cluster. The value ranges from 3 to 32. When expanding, add at least 3 nodes.security_group_id
- (Required, String, ForceNew) ID of a security group. The ID is used for configuring cluster network.user_name
- (Required, String, ForceNew) Administrator username for logging in to a data warehouse cluster The administrator username must: Consist of lowercase letters, digits, or underscores. Start with a lowercase letter or an underscore. Contain 1 to 63 characters. Cannot be a keyword of the DWS database.vpc_id
- (Required, String, ForceNew) VPC ID, which is used for configuring cluster network.user_pwd
- (Required, String) Administrator password for logging in to a data warehouse cluster A password must conform to the following rules: Contains 8 to 32 characters. Cannot be the same as the username or the username written in reverse order. Contains three types of the following: Lowercase letters Uppercase letters Digits Special characters ~!@#%^&*()-_=+|[{}];:,<.>/?availability_zone
- (Optional, String, ForceNew) AZ in a cluster.port
- (Optional, Int) Service port of a cluster (8000 to 10000). The default value is 8000.public_ip
- (Optional, List, ForceNew) A nested object resource Structure is documented below.
The public_ip
block supports:
eip_id
- (Optional, String, ForceNew) EIP ID.public_bind_type
- (Optional, String, ForceNew) Binding type of an EIP. The value can be either of the following:auto_assign
not_use
bind_existing
The default value isnot_use
.number_of_cn
- (Optional, int, ForceNew) Specifies the number of CN. If you use a large-scale cluster, deploy multiple CNs.keep_last_manual_snapshot
- (Optional, int, ForceNew) The number of latest manual snapshots that need to be retained for a cluster.
Attributes Reference¶
In addition to all arguments above, the following attributes are exported:
created
- Cluster creation time. The format is ISO8601:YYYY-MM-DDThh:mm:ssZendpoints
- View the private network connection information about the cluster. Structure is documented below.id
- Cluster IDpublic_endpoints
- Public network connection information about the cluster. If the value is not specified, the public network connection information is not used by default Structure is documented below.recent_event
- The recent event number.status
- Cluster status, which can be one of the following: CREATING AVAILABLE UNAVAILABLE CREATION FAILED.sub_status
- Sub-status of clusters in the AVAILABLE state. The value can be one of the following: NORMAL READONLY REDISTRIBUTING REDISTRIBUTION-FAILURE UNBALANCED UNBALANCED | READONLY DEGRADED DEGRADED | READONLY DEGRADED | UNBALANCED UNBALANCED | REDISTRIBUTING UNBALANCED | REDISTRIBUTION-FAILURE READONLY | REDISTRIBUTION-FAILURE UNBALANCED | READONLY | REDISTRIBUTION-FAILURE DEGRADED | REDISTRIBUTION-FAILURE DEGRADED | UNBALANCED | REDISTRIBUTION-FAILURE DEGRADED | UNBALANCED | READONLY | REDISTRIBUTION-FAILURE DEGRADED | UNBALANCED | READONLYtask_status
- Cluster management task. The value can be one of the following: RESTORING SNAPSHOTTING GROWING REBOOTING SETTING_CONFIGURATION CONFIGURING_EXT_DATASOURCE DELETING_EXT_DATASOURCE REBOOT_FAILURE RESIZE_FAILUREupdated
- Last modification time of a cluster. The format is ISO8601:YYYY-MM-DDThh:mm:ssZversion
- Data warehouse version.private_ip
- List of private network IP address.
The endpoints
block contains:
connect_info
- (Optional, String) Private network connection information.jdbc_url
- (Optional, String) JDBC URL. The following is the default format: jdbc:postgresql://< connect_info>/<YOUR_DATABASE_NAME>
The public_endpoints
block contains:
jdbc_url
- (Optional, String) JDBC URL. The following is the default format: jdbc:postgresql://< public_connect_info>/<YOUR_DATABASE_NAME>public_connect_info
- (Optional, String) Public network connection information.
Timeouts¶
This resource provides the following timeouts configuration options:
create
- Default is 60 minute.update
- Default is 60 minute.delete
- Default is 60 minute.
Import¶
Cluster can be imported using the following format:
$ terraform import opentelekomcloud_dws_cluster_v1.cluster_1 4ca46bf1-5c61-48ff-b4f3-0ad4e5e3ba90
Note that the imported state may not be identical to your resource definition, due to some attributes missing from the
API response, security or some other reason. The missing attributes include: user_pwd
, number_of_cn
.
It is generally recommended running terraform plan
after importing a cluster.
You can then decide if changes should be applied to the cluster, or the resource definition
should be updated to align with the cluster. Also you can ignore changes as below.
resource "opentelekomcloud_dws_cluster_v1" "cluster_1" {
...
lifecycle {
ignore_changes = [
user_pwd, number_of_cn,
]
}
}