├── .gitignore ├── LICENSE ├── README.md ├── ansible.cfg ├── ansible.yml ├── index-template.j2 ├── terraform.tf ├── terraform.tfvars.example └── versions.tf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/terraform-ansible-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/terraform-ansible-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/terraform-ansible-demo/HEAD/README.md -------------------------------------------------------------------------------- /ansible.cfg: -------------------------------------------------------------------------------- 1 | [defaults] 2 | host_key_checking = False 3 | -------------------------------------------------------------------------------- /ansible.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/terraform-ansible-demo/HEAD/ansible.yml -------------------------------------------------------------------------------- /index-template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/terraform-ansible-demo/HEAD/index-template.j2 -------------------------------------------------------------------------------- /terraform.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/terraform-ansible-demo/HEAD/terraform.tf -------------------------------------------------------------------------------- /terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/terraform-ansible-demo/HEAD/terraform.tfvars.example -------------------------------------------------------------------------------- /versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/terraform-ansible-demo/HEAD/versions.tf --------------------------------------------------------------------------------