ansible/test/integration/targets/prepare_ios_tests/tasks/main.yml
Ricardo Carrillo Cruz fd5db52fd9 Add provider to prepare_ios_tests role tasks (#25162)
This avoids passing -u <user> -k, as it will just consume
the credentials from group_vars
2017-05-30 14:54:22 +01:00

13 lines
366 B
YAML

---
- name: Ensure we have loopback 888 for testing
ios_config:
src: config.j2
provider: "{{ cli }}"
# Some AWS hostnames can be longer than those allowed by the system we are testing
# Truncate the hostname
# http://jinja.pocoo.org/docs/2.9/templates/#truncate
- set_fact:
shorter_hostname: '{{ inventory_hostname_short| truncate(10, True, "") }}'