├── .github └── dependabot.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── examples └── complete │ ├── main.tf │ ├── outputs.tf │ └── variables.tf ├── main.tf ├── nuke-config.yml.example ├── outputs.tf └── variables.tf /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterpointio/terraform-aws-nuke-bomber/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterpointio/terraform-aws-nuke-bomber/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterpointio/terraform-aws-nuke-bomber/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterpointio/terraform-aws-nuke-bomber/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterpointio/terraform-aws-nuke-bomber/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterpointio/terraform-aws-nuke-bomber/HEAD/README.md -------------------------------------------------------------------------------- /examples/complete/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterpointio/terraform-aws-nuke-bomber/HEAD/examples/complete/main.tf -------------------------------------------------------------------------------- /examples/complete/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterpointio/terraform-aws-nuke-bomber/HEAD/examples/complete/outputs.tf -------------------------------------------------------------------------------- /examples/complete/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterpointio/terraform-aws-nuke-bomber/HEAD/examples/complete/variables.tf -------------------------------------------------------------------------------- /main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterpointio/terraform-aws-nuke-bomber/HEAD/main.tf -------------------------------------------------------------------------------- /nuke-config.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterpointio/terraform-aws-nuke-bomber/HEAD/nuke-config.yml.example -------------------------------------------------------------------------------- /outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterpointio/terraform-aws-nuke-bomber/HEAD/outputs.tf -------------------------------------------------------------------------------- /variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterpointio/terraform-aws-nuke-bomber/HEAD/variables.tf --------------------------------------------------------------------------------