-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
69 lines (51 loc) · 1.34 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
variable "product" {}
variable "location" {
default = "UK South"
}
variable "application_type" {
type = string
default = "web"
description = "Type of Application Insights (Web/Other)"
}
variable "env" {}
variable "subscription" {}
variable "mgmt_subscription_id" {}
variable "common_tags" {
type = map(any)
}
variable "tenant_id" {}
variable "jenkins_AAD_objectId" {
type = string
description = "(Required) The Azure AD object ID of a user, service principal or security group in the Azure Active Directory tenant for the vault. The object ID must be unique for the list of access policies."
}
variable "managed_identity_api_mgmt" {
default = ""
}
variable "managed_identity_cft_api_mgmt" {
default = ""
}
variable "external_hostname" {
type = string
default = "platform.hmcts.net"
description = "Ending of hostname. Subdomains will be resolved in declaration of locals"
}
variable "enable_staging_account" {
default = 0
}
variable "aks_subscription_id" {}
variable "storage_account_repl_type" {
default = "LRS"
}
variable "staging_storage_account_repl_type" {
default = "LRS"
}
variable "sku_service_bus" {
description = "Basic, Standard or Premium"
default = "Standard"
}
variable "zone_redundant_service_bus" {
default = false
}
variable "capacity_service_bus" {
default = 0
}