forked from sdcscripts/terraform-az-firewallnva
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
71 lines (57 loc) · 1.38 KB
/
variables.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
variable "location" {
description = "Location for all resources"
}
variable "networkrgname" {
description = "Location for all resources"
}
variable "computergname" {
description = "Location for all resources"
}
variable "hub_nsg_rg_name" {
description = "Name of NSG RG"
}
variable "hub_mgmt_nsg_name" {
description = "Name of NSG"
}
variable "spoke_web_nsg_name" {
description = "Name of NSG"
}
variable "vm_admin_user" {
description = "Username for Virtual Machines"
}
variable "vm_admin_pwd" {
description = "Password for Virtual Machines"
}
variable "vm_size" {
description = "Size of the VMs"
}
variable "hub_vm_hostname" {
description = "Hostname of hub VM "
}
variable "spoke1_vm_hostname" {
description = "Hostname of spoke1 VM "
}
variable "spoke2_vm_hostname" {
description = "Hostname of spoke2 VM "
}
variable "hub_vnet_name" {
description = "Name of Hub vnet"
}
variable "spoke1_vnet_name" {
description = "Name of spoke 1 "
}
variable "spoke2_vnet_name" {
description = "Name of spoke 2"
}
variable "hub_mgmt_rules" {
description = "Open SSH to Hub management network"
}
variable "spoke_web_rules" {
description = "Open SSH to Hub management network"
}
variable "rt_table_rg_name" {
description = "Open SSH to Hub management network"
}
variable "spoke_rt_table_name" {
description = "Name of custom route table to attach to spoke networks"
}