You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module"alicloud_polardb_endpoint" {
source="./modules/alicloud/r/alicloud_polardb_endpoint"# auto_add_new_nodes - (optional) is a type of stringauto_add_new_nodes=null# db_cluster_id - (required) is a type of stringdb_cluster_id=null# endpoint_config - (optional) is a type of map of stringendpoint_config={}
# endpoint_type - (required) is a type of stringendpoint_type=null# nodes - (optional) is a type of set of stringnodes=[]
# read_write_mode - (optional) is a type of stringread_write_mode=null
}
resource"alicloud_polardb_endpoint""this" {
# auto_add_new_nodes - (optional) is a type of stringauto_add_new_nodes=var.auto_add_new_nodes# db_cluster_id - (required) is a type of stringdb_cluster_id=var.db_cluster_id# endpoint_config - (optional) is a type of map of stringendpoint_config=var.endpoint_config# endpoint_type - (required) is a type of stringendpoint_type=var.endpoint_type# nodes - (optional) is a type of set of stringnodes=var.nodes# read_write_mode - (optional) is a type of stringread_write_mode=var.read_write_mode
}
output"endpoint_config" {
description="returns a map of string"value=alicloud_polardb_endpoint.this.endpoint_config
}
output"id" {
description="returns a string"value=alicloud_polardb_endpoint.this.id
}
output"nodes" {
description="returns a set of string"value=alicloud_polardb_endpoint.this.nodes
}
output"this" {
value=alicloud_polardb_endpoint.this
}