summaryrefslogtreecommitdiffstats
path: root/roles/openshift_aws/tasks/vpc_and_subnet_id.yml
diff options
context:
space:
mode:
authorClayton Coleman <ccoleman@redhat.com>2017-11-05 01:25:30 -0400
committerGitHub <noreply@github.com>2017-11-05 01:25:30 -0400
commitbbea54dca12e8796764629b88c1faf596b2f5840 (patch)
treea577663c65a6eba7ec60e00e2ae0e023359e143e /roles/openshift_aws/tasks/vpc_and_subnet_id.yml
parent76f4f47c2fac8f2c1df8bf300069116f0dcfbf0e (diff)
parent858afb085dab78018f90ff17871b83c1dd9ba5bd (diff)
downloadopenshift-bbea54dca12e8796764629b88c1faf596b2f5840.tar.gz
openshift-bbea54dca12e8796764629b88c1faf596b2f5840.tar.bz2
openshift-bbea54dca12e8796764629b88c1faf596b2f5840.tar.xz
openshift-bbea54dca12e8796764629b88c1faf596b2f5840.zip
Merge pull request #6015 from openshift/revert-6006-elb-v2
Revert "Bootstrap enhancements."
Diffstat (limited to 'roles/openshift_aws/tasks/vpc_and_subnet_id.yml')
-rw-r--r--roles/openshift_aws/tasks/vpc_and_subnet_id.yml18
1 files changed, 0 insertions, 18 deletions
diff --git a/roles/openshift_aws/tasks/vpc_and_subnet_id.yml b/roles/openshift_aws/tasks/vpc_and_subnet_id.yml
deleted file mode 100644
index aaf9b300f..000000000
--- a/roles/openshift_aws/tasks/vpc_and_subnet_id.yml
+++ /dev/null
@@ -1,18 +0,0 @@
----
-- name: query vpc
- ec2_vpc_net_facts:
- region: "{{ openshift_aws_region }}"
- filters:
- 'tag:Name': "{{ openshift_aws_vpc_name }}"
- register: vpcout
-
-- name: debug
- debug: var=vpcout
-
-- name: fetch the default subnet id
- ec2_vpc_subnet_facts:
- region: "{{ openshift_aws_region }}"
- filters:
- "tag:Name": "{{ openshift_aws_subnet_name }}"
- vpc-id: "{{ vpcout.vpcs[0].id }}"
- register: subnetout