summaryrefslogtreecommitdiffstats
path: root/playbooks/aws/ansible-tower
diff options
context:
space:
mode:
authorThomas Wiest <twiest@users.noreply.github.com>2015-06-09 09:33:41 -0400
committerThomas Wiest <twiest@users.noreply.github.com>2015-06-09 09:33:41 -0400
commit142ef2dd35161e4544962daff21e8477988b0618 (patch)
tree54506e2866b92c8e12b3b594e14f1fbf09cff817 /playbooks/aws/ansible-tower
parent9dc9035bbe6ba7980c93484b1ad7616c1687047a (diff)
parent3b660e9b3f3859d69371f12e18922274db7ad026 (diff)
downloadopenshift-142ef2dd35161e4544962daff21e8477988b0618.tar.gz
openshift-142ef2dd35161e4544962daff21e8477988b0618.tar.bz2
openshift-142ef2dd35161e4544962daff21e8477988b0618.tar.xz
openshift-142ef2dd35161e4544962daff21e8477988b0618.zip
Merge pull request #271 from lhuard1A/oo_len
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.yml2
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 }}"