-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
50 lines (42 loc) · 1.01 KB
/
variables.tf
File metadata and controls
50 lines (42 loc) · 1.01 KB
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
variable "subscription_id" {
description = "ID da Sub."
type = string
#default = "XXXX-XXXX-XXXX-XXXX"
}
variable "name" {
description = "Nome do projeto"
type = string
default = "case1"
}
variable "location" {
description = "Zona"
type = string
default = "eastus"
}
variable "firewall-ip-static-privado" {
type = string
description = "IP Privado que deseja para subir firewall"
default = "10.0.1.4"
}
variable "spoke1-ip-static-privado" {
type = string
description = "IP Privado que deseja para subir firewall"
default = "192.0.1.5"
}
variable "spoke2-ip-static-privado" {
type = string
description = "IP Privado que deseja para subir firewall"
default = "172.0.1.5"
}
variable "username" {
description = "Username para VM"
default = "azureuser"
}
variable "password" {
description = "Password para VM"
default = "Qwert@12345&"
}
variable "vmsize" {
description = "Tamanho da VM"
default = "Standard_DS1_v2"
}