You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/integration/targets/ansible-test-cloud-aws/tasks/main.yml

18 lines
421 B
YAML

- name: Verify variables are set
assert:
that:
- aws_access_key is defined
- aws_region is defined
- aws_secret_key is defined
- resource_prefix is defined
- security_token is defined
- tiny_prefix is defined
- name: Show variables
debug:
msg: "{{ lookup('vars', item) }}"
with_items:
- aws_access_key
- aws_region
- resource_prefix
- tiny_prefix