forked from vngcloud/terraform-provider-vngcloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariable.tf
54 lines (52 loc) · 1.11 KB
/
variable.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
variable "client_id" {
type = string
default = "9e734abc-7171-4b91-aab1-f652d2147f83"
}
variable "client_secret" {
type = string
default = "c945f0d3-b1bf-4343-920c-89f6c36f23a8"
}
variable "project_id" {
type = string
default = "pro-11dd35af-8349-4441-b34e-0a969f6aeb1a"
}
variable "image_id" {
type = string
default = "img-2aba43f5-281a-4978-81ee-824e68cb0fb4"
}
variable "flavor_id" {
type = string
default = "flav-0bd3d055-7d41-4999-8582-382d370bcf57"
}
variable "volume_type_name" {
type = string
default = "200"
}
variable "root_disk_size" {
type = number
default = 20
}
variable "data_disk_size" {
type = number
default = 20
}
variable "network_id" {
type = string
default = "net-44c1098c-2271-47bc-bfba-9b504ee167b2"
}
variable "subnet_id" {
type = string
default = "sub-1e55d876-cdf8-489f-9000-7ffee722d5aa"
}
variable "ssh_key_id" {
type = string
default = "ssh-614594fa-e31a-4a36-ad9c-fc18db327e43"
}
variable "security_group_id_list" {
type = list(string)
default = ["secg-dc43929e-4c24-4044-be9b-2d57d4435a55"]
}
variable "server_count" {
type = number
default = 1
}