diff options
author | Joel Diaz <jdiaz@redhat.com> | 2018-01-04 13:55:23 +0000 |
---|---|---|
committer | Joel Diaz <jdiaz@redhat.com> | 2018-01-22 16:53:38 +0000 |
commit | cd381ae7f8716a1dccce78d08f5776ec94cd31b7 (patch) | |
tree | c03a40348dbd954f6d802be0e330539ecf79c421 /playbooks | |
parent | aa1c22ddba413d18b5b1c674a512568d18368eae (diff) | |
download | openshift-cd381ae7f8716a1dccce78d08f5776ec94cd31b7.tar.gz openshift-cd381ae7f8716a1dccce78d08f5776ec94cd31b7.tar.bz2 openshift-cd381ae7f8716a1dccce78d08f5776ec94cd31b7.tar.xz openshift-cd381ae7f8716a1dccce78d08f5776ec94cd31b7.zip |
un-hardcode default subnet az
allow defining 'default_az' for one of the subnets in the vpc structure, and pull that default_az and set it to openshift_aws_subnet_az.
this should allow one less variable to have to be defined/overridded (openshift_aws_subnet_az) when using non-default (us-east-1) regions
update provisioning_vars.yml.example to show an example VPC structure
Diffstat (limited to 'playbooks')
-rw-r--r-- | playbooks/aws/provisioning_vars.yml.example | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/playbooks/aws/provisioning_vars.yml.example b/playbooks/aws/provisioning_vars.yml.example index f6b1a6b5d..a1a8a5b08 100644 --- a/playbooks/aws/provisioning_vars.yml.example +++ b/playbooks/aws/provisioning_vars.yml.example @@ -41,11 +41,27 @@ openshift_pkg_version: # -3.7.0 # a vpc, set this to false. #openshift_aws_create_vpc: true +# when openshift_aws_create_vpc is true (the default), the VPC defined in +# openshift_aws_vpc will be created +#openshift_aws_vpc: +# name: "{{ openshift_aws_vpc_name }}" +# cidr: 172.31.0.0/16 +# subnets: +# us-east-1: +# - cidr: 172.31.48.0/20 +# az: "us-east-1c" +# default_az: true +# - cidr: 172.31.32.0/20 +# az: "us-east-1e" +# - cidr: 172.31.16.0/20 +# az: "us-east-1a" + # Name of the vpc. Needs to be set if using a pre-existing vpc. #openshift_aws_vpc_name: "{{ openshift_aws_clusterid }}" # Name of the subnet in the vpc to use. Needs to be set if using a pre-existing -# vpc + subnet. +# vpc + subnet. Otherwise will use the subnet with 'default_az' set (see above +# example VPC structure) #openshift_aws_subnet_az: # -------------- # |