-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterraform.tfvars
41 lines (38 loc) · 1.07 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
# Environmental variables
environment = "temporary"
location = "westus"
# Tag names and values
required_tags = {
WorkloadName = "Transit Hub"
DataClassification = "Sensitive"
Criticality = "Business-Critical"
BusinessUnit = "Information Technology"
OpsTeam = "Network Team"
ApplicationName = "Transit Hub"
Approver = "some@guy.com"
BudgetAmount = "1234"
CostCenter = "99999"
DR = "Mission-Critical"
Env = "Production"
EndDate = "2025-12-31"
Owner = "some@gal.com"
Requester = "someother@dude.com"
TicketNumber = "54321"
}
# VM variables
vmuser = "testuser"
vmpass = "vmpass"
virtual_machines = {
vm1 = {
workloadname = "app1"
size = "Standard_DS3_v2"
subnetid = "<subnet resource id value here>"
sku = "2019-Datacenter"
}
vm2 = {
workloadname = "app2"
size = "Standard_DS3_v2"
subnetid = "<subnet resource id value here>"
sku = "2019-Datacenter"
}
}