forked from Guimove/terraform-aws-bastion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
255 lines (211 loc) · 6.18 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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
variable "allow_ssh_commands" {
type = bool
description = "Allows the SSH user to execute one-off commands. Pass true to enable. Warning: These commands are not logged and increase the vulnerability of the system. Use at your own discretion."
default = false
}
variable "associate_public_ip_address" {
type = bool
default = true
}
variable "auto_scaling_group_subnets" {
type = list(string)
description = "List of subnets where the Auto Scaling Group will deploy the instances"
}
variable "bastion_additional_security_groups" {
type = list(string)
description = "List of additional security groups to attach to the launch template"
default = []
}
variable "bastion_ami" {
type = string
description = "The AMI that the Bastion Host will use."
default = ""
}
variable "bastion_host_key_pair" {
type = string
description = "Select the key pair to use to launch the bastion host"
}
variable "bastion_iam_permissions_boundary" {
type = string
description = "IAM Role Permissions Boundary to constrain the bastion host role"
default = ""
}
variable "bastion_iam_policy_name" {
type = string
description = "IAM policy name to create for granting the instance role access to the bucket"
default = "BastionHost"
}
variable "bastion_iam_role_name" {
type = string
description = "IAM role name to create"
default = null
}
variable "bastion_instance_count" {
type = number
default = 1
}
variable "bastion_launch_template_name" {
type = string
description = "Bastion Launch template Name, will also be used for the ASG"
default = "bastion-lt"
}
variable "bastion_record_name" {
type = string
description = "DNS record name to use for the bastion"
default = ""
}
variable "bastion_security_group_id" {
type = string
description = "Custom security group to use"
default = ""
}
variable "bucket_force_destroy" {
type = bool
default = false
description = "The bucket and all objects should be destroyed when using true"
}
variable "bucket_name" {
type = string
description = "Bucket name where the bastion will store the logs"
}
variable "bucket_versioning" {
type = bool
default = true
description = "Enable bucket versioning or not"
}
variable "cidrs" {
type = list(string)
description = "List of CIDRs that can access the bastion. Default: 0.0.0.0/0"
default = [
"0.0.0.0/0",
]
}
variable "create_dns_record" {
type = bool
description = "Choose if you want to create a record name for the bastion (LB). If true, 'hosted_zone_id' and 'bastion_record_name' are mandatory"
}
variable "create_elb" {
type = bool
description = "Choose if you want to deploy an ELB for accessing bastion hosts. If true, you must set elb_subnets and is_lb_private"
default = true
}
variable "disk_encrypt" {
type = bool
description = "Instance EBS encryption"
default = true
}
variable "disk_size" {
type = number
description = "Root EBS size in GB"
default = 8
}
variable "elb_subnets" {
type = list(string)
description = "List of subnets where the ELB will be deployed"
default = []
}
variable "enable_http_protocol_ipv6" {
type = bool
description = "Enables or disables the IPv6 endpoint for the instance metadata service"
default = false
}
variable "enable_instance_metadata_tags" {
type = bool
description = "Enables or disables access to instance tags from the instance metadata service"
default = false
}
variable "enable_logs_s3_sync" {
type = bool
description = "Enable cron job to copy logs to S3"
default = true
}
variable "extra_user_data_content" {
type = string
description = "Additional scripting to pass to the bastion host. For example, this can include installing PostgreSQL for the `psql` command."
default = ""
}
variable "hosted_zone_id" {
type = string
description = "Name of the hosted zone where we'll register the bastion DNS name"
default = ""
}
variable "http_endpoint" {
type = bool
description = "Whether the metadata service is available"
default = true
}
variable "http_put_response_hop_limit" {
type = number
description = "The desired HTTP PUT response hop limit for instance metadata requests"
default = 1
}
variable "instance_type" {
type = string
description = "Instance size of the bastion"
default = "t3.nano"
}
variable "ipv6_cidrs" {
type = list(string)
description = "List of IPv6 CIDRs that can access the bastion. Default: ::/0"
default = [
"::/0",
]
}
variable "is_lb_private" {
type = bool
nullable = true
default = null
description = "If TRUE, the load balancer scheme will be \"internal\" else \"internet-facing\""
}
variable "kms_enable_key_rotation" {
type = bool
description = "Enable key rotation for the KMS key"
default = false
}
variable "log_auto_clean" {
type = bool
description = "Enable or disable the lifecycle"
default = false
}
variable "log_expiry_days" {
type = number
description = "Number of days before logs expiration"
default = 90
}
variable "log_glacier_days" {
type = number
description = "Number of days before moving logs to Glacier"
default = 60
}
variable "log_standard_ia_days" {
type = number
description = "Number of days before moving logs to IA Storage"
default = 30
}
variable "private_ssh_port" {
type = number
description = "Set the SSH port to use between the bastion and private instance"
default = 22
}
variable "public_ssh_port" {
type = number
description = "Set the SSH port to use from desktop to the bastion"
default = 22
}
variable "region" {
type = string
}
variable "tags" {
type = map(string)
default = {}
description = "A mapping of tags to assign"
}
variable "use_imds_v2" {
type = bool
description = "Use (IMDSv2) Instance Metadata Service V2"
default = false
}
variable "vpc_id" {
type = string
description = "VPC ID where we'll deploy the bastion"
}