-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
77 lines (65 loc) · 1.5 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
variable "aws_access_key" {
type = string
default = null
}
variable "aws_secret_key" {
type = string
default = null
}
variable "main_cidr_block" {
type = string
description = "main cidr"
default = "172.0.0.0/8"
}
variable "ssl_arn" {
type = map(any)
description = "SSL Certificate ARN"
default = {}
}
/*
variable "vpc_peerings" {
type = map(any)
description = "VPC Peering Ids"
default = {}
}
*/
variable "codestar_connection_arn" {
type = string
description = "CodeStar Connection ARN"
default = null
}
variable "canary_deployments" {
type = bool
description = "Enables canary deployments through TG, ALB stickiness and EB traffic splitting"
default = null
}
variable "environments" {
type = map(any)
description = "Environments"
default = null
}
variable "redis_port" {
type = number
description = "Redis listening port"
default = 6379
}
variable "redis_transit_encryption_enabled" {
type = bool
description = "Redis transit encryption"
default = true
}
variable "ssl_listener" {
type = bool
description = "Application Listens SSL"
default = true
}
variable "preferred_azs" {
type = list(string)
description = "List of preferred azs"
default = ["b", "c"]
}
variable "legacy-vpc" {
type = map(any)
description = "Legacy Infos"
default = null
}