generated from ministryofjustice/template-repository
-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
79 lines (63 loc) · 1.61 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
variable "application_name" {
description = "An URL friendly name of the application. This name would form the application url together with the route53 zone domain name."
type = string
default = "monitoring-alerting"
}
variable "enabled" {
description = "Feature flag that controls the deployment of the infrastructure in a given environment"
type = bool
default = false
}
variable "assume_role" {
description = "The role to assume in different environments"
type = string
}
variable "assume_role_development" {
description = "The role to assume in development aws account"
type = string
}
variable "assume_role_pre_production" {
description = "The role to assume in pre-production aws account"
type = string
}
variable "aws_region" {
description = "The AWS region to create things in"
type = string
default = "eu-west-2"
}
variable "domain_name" {
description = "The domain to use for the certificate in acm"
type = string
}
variable "zone_id" {
description = "The AWS Route53 zone id for the domain used for the var.domain_name"
type = string
}
variable "db_username" {
type = string
}
variable "db_password" {
type = string
}
variable "enable_transit_gateway" {
type = string
default = false
}
variable "transit_gateway_id" {
type = string
}
variable "transit_gateway_route_table_id" {
type = string
}
variable "byoip_pool_id" {
type = string
}
variable "corsham_mgmt_range" {
type = string
}
variable "farnborough_mgmt_range" {
type = string
}
variable "network_services_cidr_block" {
type = string
}