forked from mesosphere-backup/packet-terraform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vars.tf
49 lines (40 loc) · 1.29 KB
/
vars.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
variable "dcos_cluster_name" {
description = "Name of your cluster. Alpha-numeric and hyphens only, please."
default = "openstack-dcos"
}
variable "openstack_image_id" {
description = "Name of your cluster. Alpha-numeric and hyphens only, please."
default = "f6fd5761-12b6-4f9b-95e2-9f8be4d186f2"
}
variable "openstack_flavor_id" {
description = "Name of your cluster. Alpha-numeric and hyphens only, please."
default = "4"
}
variable "openstack_network_name" {
description = "Name of your cluster. Alpha-numeric and hyphens only, please."
default = "atest1"
}
variable "dcos_master_count" {
default = "3"
description = "Number of master nodes. 1, 3, or 5."
}
variable "dcos_agent_count" {
description = "Number of agents to deploy"
default = "1"
}
variable "dcos_public_agent_count" {
description = "Number of public agents to deploy"
default = "1"
}
variable "dcos_ssh_public_key_path" {
description = "Path to your public SSH key path"
default = "./os-key.pub"
}
variable "dcos_installer_url" {
description = "Path to get DCOS"
default = "https://downloads.dcos.io/dcos/EarlyAccess/dcos_generate_config.sh"
}
variable "dcos_ssh_key_path" {
description = "Path to your private SSH key for the project"
default = "./os-key"
}