forked from rohit9211/gcp-terraform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.tfvars
17 lines (17 loc) · 1.21 KB
/
example.tfvars
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
prefix="" # resources will be prefixed with this string
etcd_discovery_url="" # discovery url to boostrap cluster
zones="us-east1-b,us-east1-d" # zones to run in (comma delimited)
default-instance-type="n1-standard-1" # the standard instance type
default-image="coreos-stable-1010-5-0-v20160527"
whitelisted-ips="" # ips to whitelist (comma delimited)
bastion-image="" # will inherit from globals if not set
bastion-instance-type="" # will inherit from globals if not set
etcd-image="" # will inherit from globals if not set
etcd-instance-type="" # will inherit from globals if not set
etcd-count="3"
master-image="" # will inherit from globals if not set
master-instance-type="" # will inherit from globals if not set
master-count="1"
worker-image="" # will inherit from globals if not set
worker-instance-type="" # will inherit from globals if not set
worker-count="1"