-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
62 lines (53 loc) · 1.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
variable "cluster" {
description = "EKS cluster configuration"
type = object({
version = string
name = string
endpoint_public_access = bool
})
}
variable "network" {
description = "Network configuration"
type = object({
vpc_id = string
subnet_ids = list(string)
control_plane_subnet_ids = list(string)
})
}
variable "ecr_token" {
description = "ECR token"
type = object({
user_name = string
password = string
})
}
variable "fargate_profiles" {
description = "Fargate profiles"
type = any
default = {}
}
variable "tags" {
description = "Tags"
type = map(string)
}
variable "aws_region_short" {
description = "AWS region short name"
type = string
}
variable "kms_key_administrators" {
description = "KMS key administrators"
type = list(string)
}
variable "zone_name" {
description = "Zone name"
type = string
}
variable "env" {
description = "value of the environment"
type = string
}
variable "private_hosted_zone_additional_vpc_ids_association" {
description = "Private hosted zone additional VPC IDs association"
type = list(string)
default = []
}