summaryrefslogtreecommitdiffstats
path: root/roles/openshift_aws
diff options
context:
space:
mode:
authorKenny Woodson <kwoodson@redhat.com>2017-12-07 16:32:17 -0500
committerKenny Woodson <kwoodson@redhat.com>2017-12-11 10:12:52 -0500
commitd45469211834f470407594b7945b6d72020dc6af (patch)
tree95a1f5c2549da3f0576e423a61717722c1ce726b /roles/openshift_aws
parent33b127157d3339caa690e6b238a81f7fe83f1383 (diff)
downloadopenshift-d45469211834f470407594b7945b6d72020dc6af.tar.gz
openshift-d45469211834f470407594b7945b6d72020dc6af.tar.bz2
openshift-d45469211834f470407594b7945b6d72020dc6af.tar.xz
openshift-d45469211834f470407594b7945b6d72020dc6af.zip
Copying upstream fix for ansible 2.4 ec2_group module.
Diffstat (limited to 'roles/openshift_aws')
-rw-r--r--roles/openshift_aws/tasks/security_group_create.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/openshift_aws/tasks/security_group_create.yml b/roles/openshift_aws/tasks/security_group_create.yml
index ef6060555..cafd09d82 100644
--- a/roles/openshift_aws/tasks/security_group_create.yml
+++ b/roles/openshift_aws/tasks/security_group_create.yml
@@ -1,6 +1,6 @@
---
- name: create the node group sgs
- ec2_group:
+ oo_ec2_group:
name: "{{ item.value.name}}"
description: "{{ item.value.desc }}"
rules: "{{ item.value.rules if 'rules' in item.value else [] }}"
@@ -9,7 +9,7 @@
with_dict: "{{ l_security_groups }}"
- name: create the k8s sgs for the node group
- ec2_group:
+ oo_ec2_group:
name: "{{ item.value.name }}_k8s"
description: "{{ item.value.desc }} for k8s"
region: "{{ openshift_aws_region }}"