-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
58 lines (48 loc) · 1.16 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
variable "acre_capacity" {
type = number
default = 2
}
variable "acre_client_protocol" {
type = string
default = "Encrypted"
}
variable "acre_cluster_policy" {
type = string
default = "EnterpriseCluster"
}
variable "acre_deployment_mode" {
type = string
default = "Complete"
}
variable "acre_eviction_policy" {
type = string
default = "NoEviction"
}
variable "acre_template_path_1" {
description = "Path to ARM template being sourced"
default = "/ARM/ACRE/cluster.json"
}
variable "acre_sku" {
type = string
default = "Enterprise_E10"
}
variable "cloud_name" {
description = "The Azure cloud environment to use. Available values at https://www.terraform.io/docs/providers/azurerm/#environment"
default = "public"
type = string
}
variable "tags" {
description = "Key/value tags to assign to all resources."
default = {}
type = map(string)
}
variable "primary-region" {
description = "Primary region for deployment"
default = "eastus"
type = string
}
variable "secondary-region" {
description = "Secondary region for deployment"
default = "westus"
type = string
}