-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
102 lines (83 loc) · 2.37 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
variable "username" {
type = string
default = ""
}
variable "password" {
type = string
default = ""
}
variable "controller_ip" {
type = string
default = ""
}
variable "region" {
default = ""
}
variable "firewall_image" {
type = string
default = ""
}
variable "fw_iam_role" {
type = string
}
variable "fw_bootstrap_bucket" {
type = string
default = ""
}
variable "aviatrix_firenet_vpc_name" {
description = "Aviatrix Firenet VPC Name"
type = string
}
variable "aviatrix_tgw_name_primary" {
description = "Aviatrix Transit Gateway Primary Name"
type = string
}
variable "aviatrix_tgw_name_secondary" {
description = "Aviatrix Transit Gateway Secondary Name"
type = string
}
variable "panorama_ip" {
description = "Private Address of Panorama"
type = string
}
variable "panorama_vm_auth_key" {
description = "Panorama VM-Auth-Key for Bootstrapping"
type = string
}
variable "panorama_template_stack" {
description = "Primary Template associated with Aviatrix Transit Gateway non HA"
type = string
}
variable "panorama_template_stack_ha" {
description = "Primary Template associated with Aviatrix Transit Gateway HA"
type = string
}
variable "panorama_device_group_name" {
description = "Panorama Device Group name to associate with firewall during bootstrap process"
type = string
default = ""
}
variable "panorama_device_group_name_1" {
description = "Panorama Device Group name to associate with firewall during bootstrap process unique NAT rulebase for firewall1"
type = string
default = ""
}
variable "panorama_device_group_name_2" {
description = "Panorama Device Group name to associate with firewall during bootstrap process unique NAT rulebase for firewall1"
type = string
default = ""
}
variable "custom_egress_cidr_azA" {
description = "If a customer wants to use a subnet built, not by the Aviatrix defaults, please update the cidr range in this variable"
type = string
default = ""
}
variable "custom_egress_cidr_azB" {
description = "If a customer wants to use a subnet built, not by the Aviatrix defaults, please update the cidr range in this variable"
type = string
default = ""
}
variable "aviaxtrix_attachment_map" {
description = "Map to associate attachment boolean values"
default = {}
}