generated from ministryofjustice/cloud-platform-terraform-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
variables.tf
64 lines (52 loc) · 1 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
variable "enable_authentication" {
type = bool
default = true
}
variable "enable_critical_notifications" {
type = bool
default = false
}
variable "admin_db_backup_retention_period" {
type = number
default = 30
}
variable "enable_dhcp_transit_gateway_attachment" {
type = bool
default = true
}
variable "enable_corsham_test_bastion" {
type = bool
default = false
}
variable "admin_local_development_domain_affix" {
type = string
default = ""
}
variable "admin_sentry_dsn" {
type = string
default = ""
}
variable "dhcp_sentry_dsn" {
type = string
default = ""
}
variable "dns_sentry_dsn" {
type = string
default = ""
}
variable "enable_dhcp_cloudwatch_log_metrics" {
type = bool
default = true
}
variable "metrics_namespace" {
type = string
default = "Kea-DHCP"
}
variable "owner_email" {
type = string
default = "[email protected]"
}
variable "enable_rds_servers_bastion" {
type = bool
default = false
}