-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathvariables.tf
More file actions
49 lines (46 loc) · 1.01 KB
/
variables.tf
File metadata and controls
49 lines (46 loc) · 1.01 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
variable "aws_region" {
type = string
default = "eu-west-2"
}
variable "imms_account_id" {
description = "Immunisation AWS account ID"
type = string
}
variable "dspp_account_id" {
description = "DSPP Core AWS account ID"
type = string
}
variable "csoc_account_id" {
description = "CSOC Core AWS account ID"
type = string
}
variable "auto_ops_role" {
default = "role/auto-ops"
type = string
}
variable "admin_role" {
default = "root"
type = string
}
variable "dev_ops_role" {
type = string
}
variable "dspp_admin_role" {
type = string
}
variable "build_agent_account_id" {
type = string
default = "958002497996"
}
variable "environment" {
type = string
description = "Immunisation AWS account name (dev / preprod / prod)"
default = "dev"
}
variable "blue_green_split" {
type = bool
description = "Whether this account uses blue / green split deployments"
default = false
}
variable "mns_account_id" {}
variable "mns_admin_role" {}