-
Notifications
You must be signed in to change notification settings - Fork 0
/
terraform.tfvars.example
35 lines (27 loc) · 1.24 KB
/
terraform.tfvars.example
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
# Fill your values in this file.
# No variables are optional. You must specify everything in here.
# All resources will have this prepended to their name
environment_name = ""
access_key = ""
secret_key = ""
region = ""
availability_zones = ["us-east-2a", "us-east-2b"]
opsman_keypair = ""
# See list of AMI IDs here:
# https://network.pivotal.io/products/ops-manager/
opsman_ami = ""
# This is used in `lbs.tf` to make load balancers for each k8s cluster.
#k8s_clusters = [
# "dev-01"
#]
# UUID Tags. In order for k8s masters to create ELBs on your behalf when creating k8s services
# of type 'LoadBalancer', the public subnets must be tagged with the UUID of the respective k8s cluster.
# These values are added as tags via the file 'subnets.tf'.
# For more details, see https://docs.pivotal.io/pks/1-5/deploy-workloads.html#aws
# Uncomment and replace these entries with UUIDs that correspond to your k8s cluster (found by using the
# 'pks cluster <cluster-name>' command).
#k8s_uuids = {
# "kubernetes.io/cluster/service-instance_085ab36a-9003-426b-a9f6-c919495fd993" = ""
# "kubernetes.io/cluster/service-instance_2b33c2e6-0d68-4ca4-af48-0485b1cea3b7" = ""
# "kubernetes.io/cluster/service-instance_35eb6349-725d-4c1b-a909-b5422fb9079e" = ""
#}