-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvariables.tf
92 lines (73 loc) · 1.96 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
variable "num_private_agents" {
description = "Specify the amount of private agents. These agents will provide your main resources"
}
variable "cluster_name" {
description = "Name of the DC/OS cluster"
}
variable "location" {
description = "Azure Region"
}
variable "name_prefix" {
description = "Name Prefix"
default = ""
}
variable "vm_size" {
description = "Azure virtual machine size"
}
variable "dcos_instance_os" {
description = "Operating system to use. Instead of using your own AMI you could use a provided OS."
}
variable "ssh_private_key_filename" {
description = "Path to the SSH private key"
default = "/dev/null"
}
variable "image" {
description = "Source image to boot from"
type = "map"
default = {}
}
variable "disk_type" {
description = "Disk Type to Leverage"
default = "Standard_LRS"
}
variable "disk_size" {
description = "Disk Size in GB"
default = "120"
}
variable "resource_group_name" {
description = "Name of the azure resource group"
}
variable "custom_data" {
description = "User data to be used on these instances (cloud-init)"
default = ""
}
variable "admin_username" {
description = "SSH User"
}
variable "public_ssh_key" {
description = "SSH Public Key"
}
variable "allow_stopping_for_update" {
description = "If true, allows Terraform to stop the instance to update its properties"
default = "true"
}
variable "tags" {
description = "Add custom tags to all resources"
type = "map"
default = {}
}
variable "hostname_format" {
description = "Format the hostname inputs are index+1, region, cluster_name"
default = "pvtagt-%[1]d-%[2]s"
}
variable "subnet_id" {
description = "Subnet ID"
}
variable "network_security_group_id" {
description = "Security Group Id"
default = ""
}
variable "avset_platform_fault_domain_count" {
description = "Availability set platform fault domain count, differs from location to location"
default = 3
}