forked from Flaconi/terraform-aws-alb-redirect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
62 lines (51 loc) · 1.48 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
variable "name" {
description = "The name used to interpolate into the resources created"
}
variable "cidr" {
default = "172.30.0.0/16"
description = "The cidr used for the network"
}
variable "ipv4_newbits" {
default = 8
description = "Number of CIDR bits to reserve when picking IPv4 Subnet sizes"
}
variable "tags" {
default = {}
description = "Extra tags to be applied to the resources"
}
variable "https_enabled" {
default = false
description = "Do we enable https"
}
variable "ipv6_networking_enabled" {
default = false
description = "Do we set up IPv6 networking"
}
variable "certificate_arn" {
default = ""
description = "The arn of the certificate"
}
variable "extra_ssl_certs" {
default = []
description = "The extra ssl certifice arns applied to the SSL Listener"
}
variable "extra_ssl_certs_count" {
default = 0
description = "The count of the extra_ssl_certs"
}
variable "redirect_rules" {
default = []
description = "A list with maps populated with redirect rules"
}
variable "lb_ip_address_type" {
default = "ipv4"
description = "The `ip_address_type` of the LB, either 'ipv4' or 'dualstack' in case ipv6 needs to be supported as well"
}
variable "response_message_body" {
default = "No match"
description = "The default response message body in case no rules have been met"
}
variable "response_code" {
default = "500"
description = "The default status code to return when no rules have been met"
}