├── .github └── workflows │ ├── docker.yml │ └── vagrant.yml ├── .gitignore ├── .yamllint ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── README.md ├── Vagrantfile ├── meta └── main.yml ├── molecule ├── aws-ec2-ubuntu │ ├── create.yml │ ├── destroy.yml │ ├── molecule.yml │ └── prepare.yml ├── converge.yml ├── default │ └── molecule.yml ├── docker-ubuntu-focal │ └── molecule.yml ├── docker-ubuntu-xenial │ └── molecule.yml ├── prepare-docker-in-docker.yml ├── tests │ └── test_docker.py └── vagrant-ubuntu │ ├── molecule.yml │ └── prepare.yml ├── renovate.json ├── screenshots ├── aws-ec2-management-console-instance-running.png ├── aws-ec2-management-console-instance-startup.png ├── aws-ec2-management-console-instance-terminated.png ├── aws-molecule-verify-success.png ├── circleci-aws-full-run-docker-aws.png ├── circleci-aws-settings-env-variables.png ├── circleci-cron-weekly-schedule.png ├── current-docs-url.png ├── ix-2019-04.png ├── ix-2019-09.png ├── multi-scenario-projectstructure.png ├── projectstructure.png ├── travisci-aws-settings-env-variables.png ├── travisci-molecule-executing-testinfra-tests.png ├── ubuntu-Amazon-EC2-AMI-Locator.png ├── verify-with-deprecation-warnings-ignored.png ├── verify-with-deprecation-warnings.png └── verify-with-pytest-verbose.png └── tasks └── main.yml /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/molecule-ansible-docker-aws/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.github/workflows/vagrant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/molecule-ansible-docker-aws/HEAD/.github/workflows/vagrant.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/molecule-ansible-docker-aws/HEAD/.gitignore -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/molecule-ansible-docker-aws/HEAD/.yamllint -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/molecule-ansible-docker-aws/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/molecule-ansible-docker-aws/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/molecule-ansible-docker-aws/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/molecule-ansible-docker-aws/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/molecule-ansible-docker-aws/HEAD/Vagrantfile -------------------------------------------------------------------------------- /meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/molecule-ansible-docker-aws/HEAD/meta/main.yml -------------------------------------------------------------------------------- /molecule/aws-ec2-ubuntu/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/molecule-ansible-docker-aws/HEAD/molecule/aws-ec2-ubuntu/create.yml -------------------------------------------------------------------------------- /molecule/aws-ec2-ubuntu/destroy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/molecule-ansible-docker-aws/HEAD/molecule/aws-ec2-ubuntu/destroy.yml -------------------------------------------------------------------------------- /molecule/aws-ec2-ubuntu/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/molecule-ansible-docker-aws/HEAD/molecule/aws-ec2-ubuntu/molecule.yml -------------------------------------------------------------------------------- /molecule/aws-ec2-ubuntu/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/molecule-ansible-docker-aws/HEAD/molecule/aws-ec2-ubuntu/prepare.yml -------------------------------------------------------------------------------- /molecule/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/molecule-ansible-docker-aws/HEAD/molecule/converge.yml -------------------------------------------------------------------------------- /molecule/default/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/molecule-ansible-docker-aws/HEAD/molecule/default/molecule.yml -------------------------------------------------------------------------------- /molecule/docker-ubuntu-focal/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/molecule-ansible-docker-aws/HEAD/molecule/docker-ubuntu-focal/molecule.yml -------------------------------------------------------------------------------- /molecule/docker-ubuntu-xenial/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/molecule-ansible-docker-aws/HEAD/molecule/docker-ubuntu-xenial/molecule.yml -------------------------------------------------------------------------------- /molecule/prepare-docker-in-docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/molecule-ansible-docker-aws/HEAD/molecule/prepare-docker-in-docker.yml -------------------------------------------------------------------------------- /molecule/tests/test_docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/molecule-ansible-docker-aws/HEAD/molecule/tests/test_docker.py -------------------------------------------------------------------------------- /molecule/vagrant-ubuntu/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/molecule-ansible-docker-aws/HEAD/molecule/vagrant-ubuntu/molecule.yml -------------------------------------------------------------------------------- /molecule/vagrant-ubuntu/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/molecule-ansible-docker-aws/HEAD/molecule/vagrant-ubuntu/prepare.yml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/molecule-ansible-docker-aws/HEAD/renovate.json -------------------------------------------------------------------------------- /screenshots/aws-ec2-management-console-instance-running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/molecule-ansible-docker-aws/HEAD/screenshots/aws-ec2-management-console-instance-running.png -------------------------------------------------------------------------------- /screenshots/aws-ec2-management-console-instance-startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/molecule-ansible-docker-aws/HEAD/screenshots/aws-ec2-management-console-instance-startup.png -------------------------------------------------------------------------------- /screenshots/aws-ec2-management-console-instance-terminated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/molecule-ansible-docker-aws/HEAD/screenshots/aws-ec2-management-console-instance-terminated.png -------------------------------------------------------------------------------- /screenshots/aws-molecule-verify-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/molecule-ansible-docker-aws/HEAD/screenshots/aws-molecule-verify-success.png -------------------------------------------------------------------------------- /screenshots/circleci-aws-full-run-docker-aws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/molecule-ansible-docker-aws/HEAD/screenshots/circleci-aws-full-run-docker-aws.png -------------------------------------------------------------------------------- /screenshots/circleci-aws-settings-env-variables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/molecule-ansible-docker-aws/HEAD/screenshots/circleci-aws-settings-env-variables.png -------------------------------------------------------------------------------- /screenshots/circleci-cron-weekly-schedule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/molecule-ansible-docker-aws/HEAD/screenshots/circleci-cron-weekly-schedule.png -------------------------------------------------------------------------------- /screenshots/current-docs-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/molecule-ansible-docker-aws/HEAD/screenshots/current-docs-url.png -------------------------------------------------------------------------------- /screenshots/ix-2019-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/molecule-ansible-docker-aws/HEAD/screenshots/ix-2019-04.png -------------------------------------------------------------------------------- /screenshots/ix-2019-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/molecule-ansible-docker-aws/HEAD/screenshots/ix-2019-09.png -------------------------------------------------------------------------------- /screenshots/multi-scenario-projectstructure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/molecule-ansible-docker-aws/HEAD/screenshots/multi-scenario-projectstructure.png -------------------------------------------------------------------------------- /screenshots/projectstructure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/molecule-ansible-docker-aws/HEAD/screenshots/projectstructure.png -------------------------------------------------------------------------------- /screenshots/travisci-aws-settings-env-variables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/molecule-ansible-docker-aws/HEAD/screenshots/travisci-aws-settings-env-variables.png -------------------------------------------------------------------------------- /screenshots/travisci-molecule-executing-testinfra-tests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/molecule-ansible-docker-aws/HEAD/screenshots/travisci-molecule-executing-testinfra-tests.png -------------------------------------------------------------------------------- /screenshots/ubuntu-Amazon-EC2-AMI-Locator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/molecule-ansible-docker-aws/HEAD/screenshots/ubuntu-Amazon-EC2-AMI-Locator.png -------------------------------------------------------------------------------- /screenshots/verify-with-deprecation-warnings-ignored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/molecule-ansible-docker-aws/HEAD/screenshots/verify-with-deprecation-warnings-ignored.png -------------------------------------------------------------------------------- /screenshots/verify-with-deprecation-warnings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/molecule-ansible-docker-aws/HEAD/screenshots/verify-with-deprecation-warnings.png -------------------------------------------------------------------------------- /screenshots/verify-with-pytest-verbose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/molecule-ansible-docker-aws/HEAD/screenshots/verify-with-pytest-verbose.png -------------------------------------------------------------------------------- /tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonashackt/molecule-ansible-docker-aws/HEAD/tasks/main.yml --------------------------------------------------------------------------------