This repository has been archived by the owner on Sep 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
80 lines (69 loc) · 1.57 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
variable "service_name" {
default = "gatus"
type = string
}
variable "iam_role_permissions_boundary" {
type = string
default = "arn:aws:iam::373346310182:policy/cms-cloud-admin/developer-boundary-policy"
}
variable "iam_role_path" {
type = string
default = ""
}
variable "vpc_id" { type = string }
variable "private_subnet_ids" {
type = list(any)
}
variable "public_subnet_ids" {
type = list(any)
}
variable "certificate_arns" {
default = []
type = list(any)
}
variable "hosted_zone_dns" {
type = string
default = ""
}
variable "service_fqdn" {
type = string
default = ""
}
variable "repository_gatus" {
type = string
default = "twinproduction/gatus:latest"
}
variable "repository_awscli" {
type = string
default = "artifactory.cloud.cms.gov/gold-image-docker-local/awscli:latest"
}
variable "acm_cert_base_domain" {
description = "Base domain of the certificate used for the ALB Proxy"
default = ""
type = string
}
variable "ingress_prefix_lists" {
type = list(any)
default = []
}
variable "ingress_cidrs" {
type = list(any)
default = []
}
variable "config_bucket_name" {
type = string
}
variable "cluster_name" {
default = "batcave"
type = string
}
variable "kms_key_id" {
default = "alias/aws/elasticfilesystem"
description = "For encrypting the EFS drive; defaults to the aws managed efs key"
type = string
}
variable "create_ecs_cluster" {
default = true
type = bool
description = "Toggles either creating the ECS Cluster or looking up an existing one"
}