-
Notifications
You must be signed in to change notification settings - Fork 0
/
terraform.tfvars
87 lines (70 loc) · 2.77 KB
/
terraform.tfvars
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
# Provide the name of the Resource Group
resourcegroup_name = "poc_product"
# Specify the location for the resource group and this will apply to all the resources inside this resource group
resourcegroup_location = "westus"
# Pass the list of web servers to be created
webtiervms_name = ["webserver1", "webserver2"]
# Pass the web tier Security Rule blocks
webtier_security_rules = [
{
rule_name = "Allow-Http"
priority = 100
direction = "Inbound"
access = "Allow"
protocol = "*"
source_port_range = "*"
destination_port_range = "80"
source_address_prefix = "*"
destination_address_prefix = "*"
},
{
rule_name = "Allow-RDP"
priority = 110
direction = "Inbound"
access = "Allow"
protocol = "*"
source_port_range = "*"
destination_port_range = "3389"
source_address_prefix = "*"
destination_address_prefix = "*"
}
]
# Provide the password for the virtual machines provisioned in webtier
webtier_vms_admin_password = "webtier@123"
# Provide the username for the virtual machines provisioned in web tier
webtier_vms_admin_username = "webuser"
# Provide the size of the virtualmachines to be created in web tier
webtier_vms_size = "Standard_F2"
# Pass the app tier Security Rule blocks
apptier_security_rules = [
{
rule_name = "Allow-RDP"
priority = 100
direction = "Inbound"
access = "Allow"
protocol = "*"
source_port_range = "*"
destination_port_range = "3389"
source_address_prefix = "*"
destination_address_prefix = "*"
}
]
# Pass the list of appservers to be created
apptiervms_name = ["appserver1", "appserver2"]
# Provide the password for the virtual machines provisioned in webtier
apptier_vms_admin_password = "apptier@123"
# Provide the username for the virtual machines provisioned in web tier
apptier_vms_admin_username = "appuser"
# Provide the size of the virtualmachines to be created in web tier
apptier_vms_size = "Standard_F2"
# Pass the database tier Security Rule blocks
databasetier_security_rules = [
]
# Pass the list of database servers to be created
databasetiervms_name = ["databaseserver1"]
# Provide the password for the virtual machines provisioned in database tier
databasetier_vms_admin_password = "databasetier@123"
# Provide the username for the virtual machines provisioned in database tier
databasetier_vms_admin_username = "databaseuser"
# Provide the size of the virtualmachines to be created in database tier
databasetier_vms_size = "Standard_F2"