-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.auto.tfvars
73 lines (69 loc) · 2.24 KB
/
variables.auto.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
rsg = "packer-rsg"
location = "eastus"
tags = { "Account" = "Storage", "Subscription" = "Dev", "Application" = "Packer-Image" }
storage_name = "packerstg01"
vnet_cidr = ["192.168.0.0/16"]
subnet_cidr = ["192.168.1.0/24"]
private_key = "id_rsa"
configuration_file = "configuration.tpl"
public_key = "id_rsa.pub"
//Enter Packer image Name
packerimage = "packerterrform01"
user_name = "satya"
nsg_rules = [
{
name = "Allow-Web-In"
priority = 100
direction = "Inbound"
access = "Allow"
protocol = "Tcp"
source_port_range = "*"
destination_port_range = "80"
source_address_prefix = "*"
destination_address_prefix = "*"
},
{
name = "Allow-SSH-In"
priority = 101
direction = "Inbound"
access = "Allow"
protocol = "Tcp"
source_port_range = "*"
destination_port_range = "22"
source_address_prefix = "*"
destination_address_prefix = "*"
},
{
name = "Allow-Jenkins-In"
priority = 102
direction = "Inbound"
access = "Allow"
protocol = "Tcp"
source_port_range = "*"
destination_port_range = "8080"
source_address_prefix = "*"
destination_address_prefix = "*"
},
{
name = "Allow-Web-Out"
priority = 103
direction = "Outbound"
access = "Allow"
protocol = "Tcp"
source_port_range = "*"
destination_port_range = "80"
source_address_prefix = "*"
destination_address_prefix = "*"
},
{
name = "Allow-Jenkins-Out"
priority = 104
direction = "Outbound"
access = "Allow"
protocol = "Tcp"
source_port_range = "*"
destination_port_range = "8080"
source_address_prefix = "*"
destination_address_prefix = "*"
}
]