├── LICENSE ├── README.md └── Red-Route53-Interactive ├── defaults └── main.yml ├── handlers └── main.yml ├── meta └── main.yml ├── tasks ├── deploy_r53_interactive.yml └── main.yml └── templates └── main.yml /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfmaes/Red-Route53-Interactive/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfmaes/Red-Route53-Interactive/HEAD/README.md -------------------------------------------------------------------------------- /Red-Route53-Interactive/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfmaes/Red-Route53-Interactive/HEAD/Red-Route53-Interactive/defaults/main.yml -------------------------------------------------------------------------------- /Red-Route53-Interactive/handlers/main.yml: -------------------------------------------------------------------------------- 1 | #no specific handlers. 2 | -------------------------------------------------------------------------------- /Red-Route53-Interactive/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfmaes/Red-Route53-Interactive/HEAD/Red-Route53-Interactive/meta/main.yml -------------------------------------------------------------------------------- /Red-Route53-Interactive/tasks/deploy_r53_interactive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfmaes/Red-Route53-Interactive/HEAD/Red-Route53-Interactive/tasks/deploy_r53_interactive.yml -------------------------------------------------------------------------------- /Red-Route53-Interactive/tasks/main.yml: -------------------------------------------------------------------------------- 1 | - name: Provision R53 DNS multiple 2 | import_tasks: deploy_r53_interactive.yml 3 | 4 | -------------------------------------------------------------------------------- /Red-Route53-Interactive/templates/main.yml: -------------------------------------------------------------------------------- 1 | #no specific templates 2 | --------------------------------------------------------------------------------