-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
55 lines (45 loc) · 1.03 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
variable "cluster_name" {
type = string
description = "The name of the EKS Cluster."
}
variable "env" {
type = string
description = "The name of the env."
}
variable "region" {
type = string
description = "The region."
}
variable "vpc_id" {
type = string
description = "The vpc."
}
variable "domain" {
description = "Domain name for the environment"
type = string
}
variable "dev_domain" {
description = "Domain name for the environment"
type = string
}
variable "staging_domain" {
description = "Domain name for the environment"
type = string
}
variable "prod_domain" {
description = "Domain name for the environment"
type = string
}
variable "domain_aliases" {
description = "List of domain aliases"
type = list(string)
default = []
}
variable "humanitec_org" {
type = string
description = "The name of the Humanitec Org"
}
variable "secret_store_name" {
type = string
description = "The name of the Secret Store"
}