forked from vrvicky/addNode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariable.tf
More file actions
36 lines (28 loc) · 864 Bytes
/
Copy pathvariable.tf
File metadata and controls
36 lines (28 loc) · 864 Bytes
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
variable "bootIP" {
description = "IP of host to ssh, boot node or Master 1"
}
variable "nodeType" {
description = "Node type - worker , master, proxy..."
}
variable "NewNodeIPs" {
description = "IP of new node"
type = "list"
}
variable "root_password" {
description = "ssh root password"
}
variable "dockerRegistry" {
description = "Docker registry to pull the images"
default = "registry.ng.bluemix.net"
}
variable "reg_token" {
description = "Docker registry token for auth"
default = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJmZTI1ZDQzZS1iNzBlLTU2NDctOGE5Yy0wNjFjZjUyZDI2ODYiLCJpc3MiOiJyZWdpc3RyeS5ibHVlbWl4Lm5ldCJ9.Pn9Vf7sNCQahDWfj2Xi9kGXzq-0hGFnAGhqqpUrWwt4"
}
variable "image_tag" {
description = "GA version of CAM x86"
}
variable "clusterLocation" {
description = "Location to CAM cluster folder"
}
variable "dependsOn" {}