-
Notifications
You must be signed in to change notification settings - Fork 0
/
terraform.tfvars
48 lines (38 loc) · 1019 Bytes
/
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
resource_group_name="deleteme-anftest"
location="koreacentral"
networking_object = {
vnet = {
name = "-vnet"
address_space = ["10.10.0.0/16"]
dns = []
}
specialsubnets = {
}
subnets = {
frontend = {
name = "frontend"
cidr = "10.10.0.0/24"
service_endpoints = []
nsg_name = "frontend"
}
}
}
pip = {
0 = {
name = "deleteme-bastion"
}
}
# use_dedicated_host = false # default is true. unblock this if you don't want to use dedicated host
vm = {
name = "deleteme-bastion"
vm_num = 1
vm_size = "Standard_E64s_v3"
subnet_ip_offset = 4
vm_publisher = "Canonical"
vm_offer = "UbuntuServer"
vm_sku = "18.04-LTS"
vm_version = "latest"
}
num_disk = 3
# admin_username="{Enter VM admin username here}"
# admin_password="{Enter VM admin password here}"