diff options
author | Lénaïc Huard <lhuard@amadeus.com> | 2015-06-08 09:32:59 +0200 |
---|---|---|
committer | Lénaïc Huard <lhuard@amadeus.com> | 2015-06-08 09:32:59 +0200 |
commit | 3b660e9b3f3859d69371f12e18922274db7ad026 (patch) | |
tree | 53cc77cc35a071ad49f4c9611946e1fd70e6ce15 /playbooks/aws/ansible-tower | |
parent | af8b0b25f5e572ab20e3c3efdba596bae7ae7563 (diff) | |
download | openshift-3b660e9b3f3859d69371f12e18922274db7ad026.tar.gz openshift-3b660e9b3f3859d69371f12e18922274db7ad026.tar.bz2 openshift-3b660e9b3f3859d69371f12e18922274db7ad026.tar.xz openshift-3b660e9b3f3859d69371f12e18922274db7ad026.zip |
Replace the custom oo_len filter by the Jinja2 standard one: length
Diffstat (limited to 'playbooks/aws/ansible-tower')
-rw-r--r-- | playbooks/aws/ansible-tower/launch.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/playbooks/aws/ansible-tower/launch.yml b/playbooks/aws/ansible-tower/launch.yml index c23bda3a0..4bcc8b8dc 100644 --- a/playbooks/aws/ansible-tower/launch.yml +++ b/playbooks/aws/ansible-tower/launch.yml @@ -22,7 +22,7 @@ group_id: "{{ oo_security_group_ids }}" instance_type: c4.xlarge image: "{{ rhel7_ami }}" - count: "{{ oo_new_inst_names | oo_len }}" + count: "{{ oo_new_inst_names | length }}" user_data: "{{ lookup('file', user_data_file) }}" wait: yes assign_public_ip: "{{ oo_assign_public_ip }}" |