diff options
| author | Kenny Woodson <kwoodson@redhat.com> | 2017-12-07 16:32:17 -0500 | 
|---|---|---|
| committer | Kenny Woodson <kwoodson@redhat.com> | 2017-12-11 10:12:52 -0500 | 
| commit | d45469211834f470407594b7945b6d72020dc6af (patch) | |
| tree | 95a1f5c2549da3f0576e423a61717722c1ce726b /roles/openshift_aws/tasks | |
| parent | 33b127157d3339caa690e6b238a81f7fe83f1383 (diff) | |
Copying upstream fix for ansible 2.4 ec2_group module.
Diffstat (limited to 'roles/openshift_aws/tasks')
| -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 }}"  | 
