-
Notifications
You must be signed in to change notification settings - Fork 4
/
variables.tf
69 lines (59 loc) · 1.72 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
variable "name" {
type = string
description = "The name used to interpolate into the resources created"
}
variable "cidr" {
type = string
default = "172.30.0.0/16"
description = "The cidr used for the network"
}
variable "tags" {
type = map(string)
default = {}
description = "Extra tags to be applied to the resources"
}
variable "https_enabled" {
type = bool
default = false
description = "Do we enable https"
}
variable "certificate_arn" {
type = string
default = ""
description = "The arn of the certificate"
}
variable "extra_ssl_certs" {
type = map(string)
default = {}
description = "Map of extra ssl certificates arns applied to the SSL Listener"
}
variable "redirect_rules" {
type = list(map(string))
default = []
description = "A list with maps populated with redirect rules"
}
variable "lb_ip_address_type" {
type = string
default = "ipv4"
description = "The `ip_address_type` of the LB, either 'ipv4' or 'dualstack' in case ipv6 needs to be supported as well"
}
variable "ipv6_networking_enabled" {
type = bool
default = false
description = "Do we configure IPv6 routing and ingress in the VPC"
}
variable "response_message_body" {
type = string
default = "No match"
description = "The default response message body in case no rules have been met"
}
variable "response_code" {
type = string
default = "500"
description = "The default status code to return when no rules have been met"
}
variable "ssl_policy" {
description = "Security policy used for front-end connections."
type = string
default = "ELBSecurityPolicy-FS-1-2-Res-2020-10"
}