6b7ea5078f
* initial source of the elb_target_facts module, which gathers all registered ELBv2 target groups for a given instance id * updating * initial dump of tests * updating docs, adding AWSRetry decorators * updating tests * More brush up, some refactoring * updating for sanity tests * removing extra space * updating elb_target_facts to use a new name for the return value, not return a fact, and use instance variables for the AWS connections. updating tests to go along with that * updating classes to be 'new-style' classes
6 lines
213 B
Bash
Executable file
6 lines
213 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# We don't set -u here, due to pypa/virtualenv#150
|
|
set -ex
|
|
|
|
ansible-playbook -i ../../inventory -e @../../integration_config.yml -e @../../cloud-config-aws.yml -v playbooks/full_test.yml "$@"
|