-
Notifications
You must be signed in to change notification settings - Fork 2
/
variables.tf
86 lines (71 loc) · 2.11 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
80
81
82
83
84
85
86
variable "product" {
type = string
default = "wa"
description = "The name of your application"
}
variable "env" {
type = string
description = "The deployment environment (sandbox, aat, prod etc..)"
}
variable "location" {
type = string
default = "UK South"
}
variable "tenant_id" {
type = string
description = "The Tenant ID of the Azure Active Directory"
}
variable "jenkins_AAD_objectId" {
type = string
description = "This is the ID of the Application you wish to give access to the Key Vault via the access policy"
}
variable "wa_product_group_object_id" {
type = string
default = "cdeb331b-adfe-46a7-a2c8-a628e2d35d96"
}
variable "team_name" {
type = string
description = "Team name"
default = "Work Allocation"
}
variable "team_contact" {
type = string
description = "Team contact"
default = "#workallocation"
}
variable "destroy_me" {
type = string
description = "Here be dragons! In the future if this is set to Yes then automation will delete this resource on a schedule. Please set to No unless you know what you are doing"
default = "No"
}
variable "managed_identity_object_id" {
default = ""
}
// as of now, UK South is unavailable for Application Insights
variable "appinsights_location" {
type = string
default = "West Europe"
description = "Location for Application Insights"
}
variable "appinsights_application_type" {
type = string
default = "web"
description = "Type of Application Insights (Web/Other)"
}
variable "common_tags" {
type = map(string)
}
#this is the default value for any environment without a override file
variable "allowed_jurisdictions" {
type = string
default = "'ia', 'IA', 'civil', 'CIVIL'"
description = "Allowed jurisdictions ids for which ccd messages can be processed in case event handler"
}
variable "enable-wa-task-management-api-task-deletion-failure-alert" {
default = false
}
variable "additional_managed_identities_access" {
type = list(string)
description = "The name of your application"
default = []
}