-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvariables.tf
48 lines (38 loc) · 1.09 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
variable "cluster_name" {
description = "Name of the DC/OS cluster"
}
variable "resource_group_name" {
description = "Name of the azure resource group"
}
variable "location" {
description = "Azure Region"
}
variable "name_prefix" {
description = "Name Prefix"
}
variable "tags" {
description = "Add custom tags to all resources"
type = "map"
default = {}
}
variable "subnet_id" {
description = "Subnet ID"
}
variable "masters_instance_nic_ids" {
description = "List of master instance nic ids"
type = "list"
}
variable "public_agents_instance_nic_ids" {
description = "List of public agents instance nic ids"
type = "list"
}
variable "public_agents_additional_rules" {
description = "Additional list of rules for public agents. These Rules are an additon to the default rules."
default = []
}
variable "num_masters" {
description = "Specify the amount of masters. For redundancy you should have at least 3"
}
variable "num_public_agents" {
description = "Specify the amount of public agents. These agents will host marathon-lb and edgelb"
}