summaryrefslogtreecommitdiffstats
path: root/roles/openshift_aws/tasks/vpc_and_subnet_id.yml
diff options
context:
space:
mode:
authorJoel Diaz <jdiaz@redhat.com>2018-02-02 00:37:48 +0000
committerJoel Diaz <jdiaz@redhat.com>2018-02-02 21:05:35 +0000
commit0daad23f9b61e1b58ce295059c98605aaa8062f2 (patch)
tree92fe8ac966a36f488b718705cb186fad726e530d /roles/openshift_aws/tasks/vpc_and_subnet_id.yml
parent4fe88b001295566d49db1fe711870bf43c40c1ab (diff)
downloadopenshift-0daad23f9b61e1b58ce295059c98605aaa8062f2.tar.gz
openshift-0daad23f9b61e1b58ce295059c98605aaa8062f2.tar.bz2
openshift-0daad23f9b61e1b58ce295059c98605aaa8062f2.tar.xz
openshift-0daad23f9b61e1b58ce295059c98605aaa8062f2.zip
add deprovisioning for ELB (and IAM certs)
add playbooks to handle deleting ELBs and any IAM certs that may have been created during provisioning. redo ELB creation to remove arbitrary wait and just retry until ELB creation succeeds
Diffstat (limited to 'roles/openshift_aws/tasks/vpc_and_subnet_id.yml')
-rw-r--r--roles/openshift_aws/tasks/vpc_and_subnet_id.yml8
1 files changed, 6 insertions, 2 deletions
diff --git a/roles/openshift_aws/tasks/vpc_and_subnet_id.yml b/roles/openshift_aws/tasks/vpc_and_subnet_id.yml
index 1b754f863..c2c345faf 100644
--- a/roles/openshift_aws/tasks/vpc_and_subnet_id.yml
+++ b/roles/openshift_aws/tasks/vpc_and_subnet_id.yml
@@ -7,7 +7,9 @@
register: vpcout
- name: debug vcpout
- debug: var=vpcout
+ debug:
+ var: vpcout
+ verbosity: 1
- name: fetch the default subnet id
ec2_vpc_subnet_facts:
@@ -18,4 +20,6 @@
register: subnetout
- name: debug subnetout
- debug: var=subnetout
+ debug:
+ var: subnetout
+ verbosity: 1