generated from ministryofjustice/cloud-platform-terraform-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
62 lines (51 loc) · 1.33 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
variable "canary_bucket" {
description = "Module needs an existing bucket to put output in"
type = string
}
variable "canary_name" {
description = "The name of the canary will be prepended with team_name"
type = string
}
variable "hostname" {
description = "the hostname for the canary request"
type = string
}
variable "endpointpath" {
description = "path - appended to the hostname for full api request"
type = string
}
variable "port" {
description = "port to target request on"
type = string
}
variable "team_name" {
type = string
description = "Team name"
}
variable "application" {
type = string
description = "Application name"
}
variable "environment" {
type = string
description = "Environment name"
}
variable "is_production" {
default = "false"
description = "Whether the environment is production or not"
type = string
}
variable "namespace" {
default = ""
description = "Namespace name"
type = string
}
variable "business_unit" {
description = "Area of the MOJ responsible for the service"
default = ""
type = string
}
variable "infrastructure_support" {
description = "The team responsible for managing the infrastructure. Should be of the form <team-name> (<team-email>)"
type = string
}