diff options
author | Scott Dodson <sdodson@redhat.com> | 2017-12-11 16:07:07 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-11 16:07:07 -0500 |
commit | a53b8f63175c80c9d0a8d590fd0854e2ed8e1aae (patch) | |
tree | 11fcfdadfb81cd0dc153b9397b4b244c36fc2546 /roles/openshift_aws | |
parent | 8a681af4445eed29ed1d56ca64a03b2ab79b5145 (diff) | |
parent | d45469211834f470407594b7945b6d72020dc6af (diff) | |
download | openshift-a53b8f63175c80c9d0a8d590fd0854e2ed8e1aae.tar.gz openshift-a53b8f63175c80c9d0a8d590fd0854e2ed8e1aae.tar.bz2 openshift-a53b8f63175c80c9d0a8d590fd0854e2ed8e1aae.tar.xz openshift-a53b8f63175c80c9d0a8d590fd0854e2ed8e1aae.zip |
Merge pull request #6393 from kwoodson/ansible_2.4_sg_fix
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.yml | 4 |
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 }}" |