-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvms_platform.tf
137 lines (117 loc) · 2.91 KB
/
vms_platform.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
variable "vm_resources" {
type = map(map(number))
description = "Resources map for VMs"
default = {
web = {
cores = 2
memory = 1
core_fraction = 5
}
db = {
cores = 2
memory = 2
core_fraction = 20
}
}
}
variable "vm_metadata" {
type = map(string)
description = "Metadata map for VMs"
default = {
serial-port-enable = "1"
ssh-keys = "ubuntu:ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKWdwZ3ITR9ceNI5R/BcOHUf9H3G/i/u2MkOGk945cUI nedorezov@GARRO"
}
}
###vm platform-web vars
#variable "vm_web_name" {
# type = string
# default = "netology-develop-platform-web"
# description = "instance name"
#}
variable "vm_web_platform" {
type = string
default = "standard-v1"
description = "platform id"
}
#variable "vm_web_resource_cores" {
# type = number
# default = 2
# description = "number of vCPU cores"
#}
#variable "vm_web_resource_memory" {
# type = number
# default = 1
# description = "VM memory"
#}
#
#variable "vm_web_resource_core_fraction" {
# type = number
# default = 5
# description = "baseline performance for a core as a percent"
#}
variable "vm_web_policy_preemptible" {
type = bool
default = true
description = "if the instance is preemptible"
}
variable "vm_web_network_nat" {
type = bool
default = true
description = "Provide a public address, for instance, to access the internet over NAT"
}
#variable "vm_web_serial_port_enable" {
# type = number
# default = 1
# description = "Access to serial console"
#}
#variable "vm_web_user" {
# type = string
# default = "ubuntu"
# description = "default user"
#}
###vm platform-db vars
#variable "vm_db_name" {
# type = string
# default = "netology-develop-platform-db"
# description = "instance name"
#}
variable "vm_db_platform" {
type = string
default = "standard-v1"
description = "platform id"
}
#variable "vm_db_resource_cores" {
# type = number
# default = 2
# description = "number of vCPU cores"
#}
#variable "vm_db_resource_memory" {
# type = number
# default = 2
# description = "VM memory"
#}
#variable "vm_db_resource_core_fraction" {
# type = number
# default = 20
# description = "baseline performance for a core as a percent"
#}
variable "vm_db_policy_preemptible" {
type = bool
default = true
description = "if the instance is preemptible"
}
variable "vm_db_network_nat" {
type = bool
default = true
description = "Provide a public address, for instance, to access the internet over NAT"
}
#variable "vm_db_serial_port_enable" {
# type = number
# default = 1
# description = "Access to serial console"
#}
#variable "vm_db_user" {
# type = string
# default = "ubuntu"
# description = "default user"
#}