4e6298b847
* ec2 inventory/rds: (integration tests) migrate to module_defaults and cope with missing security_token * ec2 inventory/rds: (integration tests) Avoid hard coding the parameter group name Generated it based on the information returned when creating the RDS instance. * ec2 inventory/rds: (integration tests) rename templates to .j2 rather than .yml - avoids throwing yamllint errors - makes it clear they're templates not the final yaml files.
35 lines
1.2 KiB
Bash
Executable file
35 lines
1.2 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -eux
|
|
|
|
# ensure test config is empty
|
|
ansible-playbook playbooks/empty_inventory_config.yml "$@"
|
|
|
|
export ANSIBLE_INVENTORY_ENABLED=aws_rds
|
|
|
|
# test with default inventory file
|
|
ansible-playbook playbooks/test_invalid_aws_rds_inventory_config.yml "$@"
|
|
|
|
export ANSIBLE_INVENTORY=test.aws_rds.yml
|
|
|
|
# test empty inventory config
|
|
ansible-playbook playbooks/test_invalid_aws_rds_inventory_config.yml "$@"
|
|
|
|
# generate inventory config and test using it
|
|
ansible-playbook playbooks/create_inventory_config.yml "$@"
|
|
ansible-playbook playbooks/test_populating_inventory.yml "$@"
|
|
|
|
# generate inventory config with caching and test using it
|
|
ansible-playbook playbooks/create_inventory_config.yml -e "template='inventory_with_cache.j2'" "$@"
|
|
ansible-playbook playbooks/populate_cache.yml "$@"
|
|
ansible-playbook playbooks/test_inventory_cache.yml "$@"
|
|
|
|
# remove inventory cache
|
|
rm -r aws_rds_cache_dir/
|
|
|
|
# generate inventory config with constructed features and test using it
|
|
ansible-playbook playbooks/create_inventory_config.yml -e "template='inventory_with_constructed.j2'" "$@"
|
|
ansible-playbook playbooks/test_populating_inventory_with_constructed.yml "$@"
|
|
|
|
# cleanup inventory config
|
|
ansible-playbook playbooks/empty_inventory_config.yml "$@"
|