-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvariables.tf
83 lines (67 loc) · 1.83 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
78
79
80
81
82
83
variable "aws_region" {
description = "Region where all the resources will be deployed"
type = string
}
variable "vpc_cidr" {
type = string
description = "CIDR block for the VPC"
}
variable "enable_flow_logs" {
type = bool
description = "Enable flow logs for VPC"
}
variable "node_type" {
type = string
description = "Type of nodes for initial EKS deployment"
}
variable "cloudflare_secret_name" {
type = string
description = "Name of secret where Cloudflare API key is stored"
}
variable "cloudflare_zone_name" {
type = string
description = "Name of the zone where to create the domain records"
}
variable "backend_domain_prefix" {
type = string
description = "Prefix for backend"
}
variable "third_party_secrets_id" {
type = string
description = "Name of the secret where all the third-party secrets are stored"
}
variable "account_id" {
type = string
description = "AWS account ID"
}
variable "backend_app_code_repo_name" {
type = string
description = "Name of the Bitbucket repo for backend"
}
variable "backend_repo_branch_name" {
type = string
description = "Name of the backend repo branch"
}
variable "helm_repo_name" {
type = string
description = "Name of the Helm repo from Bitbucket"
}
variable "helm_repo_branch" {
type = string
description = "Name of the Helm repo branch"
}
variable "environament" {
type = string
description = "Name of the env like dev,prod and test"
}
variable "create_mongodb_release" {
description = "Flag to create MongoDB Helm release"
type = bool
}
variable "discord_url_secrets" {
description = "name of secret where discord URLS are stored"
}
variable "backend_alb_name" {
type = string
description = "Name of the lab for backend application"
}