-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvariables.tf
169 lines (142 loc) · 4.23 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
variable "allowed_admin_cidrs" {
default = ["0.0.0.0/0"]
description = "Public CIDRs that will be able to access the FortiGate admin ports"
type = list(string)
}
variable "allowed_admin_security_group_id" {
default = null
description = "Security group allowed to access admininstrative ports"
type = string
}
variable "ami_account_id" {
default = "679593333241"
description = "AWS account holding Fortinet AMI (GovCloud uses `874634375141`)"
type = string
}
variable "ami_byol_filter" {
default = "FortiGate-VM64-AWS build*"
description = "AMI name string for on demand FG AMI"
type = string
}
variable "ami_ondemand_filter" {
default = "FortiGate-VM64-AWSONDEMAND*"
description = "AMI name string for on demand FG AMI"
type = string
}
variable "create_keypair" {
default = true
description = "Whether to create a keypair for this instance, which will be stored in Secrets Manager"
type = bool
}
variable "enable_sdn_access" {
default = false
description = "Enable FortiGate SDN access to AWS resources"
type = bool
}
variable "external_subnet_id" {
description = "Subnet ID to use for public interface"
type = string
}
variable "https_admin_port" {
default = 443
description = "HTTPS port for administrative access"
type = number
}
variable "instance_type" {
default = "m5.large"
description = "Instance type for FG"
type = string
}
variable "internal_subnet_id" {
description = "Subnet ID to use for internal interface"
type = string
}
variable "keypair" {
default = null
description = "Keypair to use for EC2 instance (set to blank to omit a keypair, not used if `create_keypair==true`)"
type = string
}
variable "name" {
default = "fortigate"
description = "Name of this Fortigate instance"
type = string
}
variable "override_ami" {
default = ""
description = "Specify to force a specific AMI"
type = string
}
variable "tags" {
default = {}
description = "Tags to apply to supported resources (don't include name tag)"
type = map(string)
}
variable "use_byol" {
default = false
description = "Use BYOL license (as opposed to on demand pricing)"
type = bool
}
variable "vpc_id" {
description = "VPC to create resources in"
type = string
}
########################################
# Auto Config Settings
########################################
variable "create_config_bucket" {
default = false
description = "Create a bucket for configuration auto loading"
type = bool
}
variable "config_bucket_name" {
default = ""
description = "Name of config bucket. If `create_config_bucket = true`, a bucket with this name will be created."
type = string
}
variable "config_bucket_config_file" {
default = "fortigate.conf"
description = "Name of the configuration file in the S3 bucket"
type = string
}
variable "config_bucket_license_file" {
default = ""
description = "Name of the license file (leave blank if using on demand)"
type = string
}
variable "config_bucket_region" {
default = ""
description = "Region that the S3 bucket is in. Required when the bucket is not created by this module."
type = string
}
variable "create_config_bucket_iam_policy" {
default = true
description = "Attach an IAM policy granting the FortiGate instance read access to all objects in the bucket."
type = bool
}
variable "enable_auto_config" {
default = false
description = "Enable auto configuration"
type = bool
}
variable "load_default_config" {
default = false
description = "Place a default configuration file in the config bucket with the specified name"
type = bool
}
########################################
# Route 53 Settings
########################################
variable "create_route53_address" {
default = false
description = "Associate a Route53 entry to the public EIP"
type = bool
}
variable "route53_address" {
default = ""
description = "Route 53 address (do not include full domain)"
type = string
}
variable "route53_zone_id" {
default = ""
type = string
}