-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
101 lines (78 loc) · 2.39 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
//SHARED VARIABLES
variable "subscription" {}
variable "product" {
description = "The name of your application"
default = "plum"
}
variable "project" {
default = "cft"
description = "Project name"
}
variable "env" {
description = "The deployment environment (sandbox, aat, prod etc..)"
}
variable "location" {
description = "The location where you would like to deploy your infrastructure"
default = "UK South"
}
//APP INSIGHTS SPECIFIC VARIABLES
variable "appinsights_location" {
description = "Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created."
default = "UK South"
}
variable "application_type" {
description = "This is the type of application you are creating app insights. Valid values are Web and Other"
default = "web"
}
//KEY VAULT SPECIFIC VARIABLES
variable "tenant_id" {
description = "The Tenant ID of the Azure Active Directory"
}
variable "jenkins_AAD_objectId" {
description = "This is the ID of the Application you wish to give access to the Key Vault via the access policy"
}
variable "team_contact" {
description = "The name of your Slack channel people can use to contact your team about your infrastructure"
default = "#Cloud-Native"
}
variable "certificate_name" {
default = "STAR-platform-hmcts-net"
description = "The certificate name to use in public listeners. Should support the public hostname."
}
variable "public_hostname" {
default = "plum.platform.hmcts.net"
description = "The public hostanme to use when accessing plum's frontend"
}
variable "health_check_interval" {
default = "60"
description = "interval between healthchecks in seconds"
}
variable "unhealthy_threshold" {
default = "3"
description = "unhealthy threshold applied to healthprobe"
}
variable "health_check" {
default = "/health"
description = "endpoint for healthcheck"
}
variable "infra_location" {
default = "core-infra"
}
variable "common_tags" {
type = map(string)
}
variable "managed_identity_object_id" {
default = ""
}
variable "aks_subscription_id" {}
variable "create_chart_tests_mi" {
default = false
}
variable "additional_managed_identities_access" {
type = list(string)
default = []
}
variable "daily_data_cap_in_gb" {
description = "Specifies the Application Insights component daily data volume cap in GB"
default = 100
}