Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,6 @@ resource "alicloud_adb_cluster" "this" {
db_node_storage = var.db_node_storage
pay_type = var.pay_type
vswitch_id = var.vswitch_id
mode = var.mode
}

8 changes: 7 additions & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -91,4 +91,10 @@ variable "vswitch_id" {
description = "VSwitch variables, if vswitch_id is empty, then the net_type = classic."
type = string
default = ""
}
}

variable "mode" {
description = "The mode of the cluster.."
type = string
default = "flexible"
}