-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
91 lines (71 loc) · 1.46 KB
/
Copy pathvariables.tf
File metadata and controls
91 lines (71 loc) · 1.46 KB
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
84
85
86
87
88
89
90
91
variable "region" {
type = string
}
variable "unique_suffix" {
type = string
}
variable "spacelift_version" {
type = string
}
variable "vpc_id" {
type = string
}
variable "public_subnet_ids" {
type = list(string)
}
variable "private_subnet_ids" {
type = list(string)
}
variable "server_security_group_id" {
type = string
}
variable "drain_security_group_id" {
type = string
}
variable "scheduler_security_group_id" {
type = string
}
variable "kms_key_arn" {
type = string
}
variable "kms_encryption_key_arn" {
type = string
}
variable "kms_signing_key_arn" {
type = string
}
variable "server_lb_name" {
type = string
description = "The name of the server load balancer."
default = null
}
variable "lb_certificate_arn" {
type = string
}
variable "website_domain" {
type = string
}
variable "mqtt_broker_endpoint" {
type = string
}
variable "ecr_backend_repository_url" {
type = string
}
variable "ecr_launcher_repository_url" {
type = string
}
variable "load_balancer_security_group_id" {
type = string
default = null
description = "The security group ID to use for the main load balancer. If not provided, a new security group will be created."
}
variable "datadog_api_key" {
type = string
description = "The Datadog API key."
sensitive = true
}
variable "datadog_site" {
type = string
description = "The Datadog site to send metrics and traces to."
default = "datadoghq.com"
}