├── .gitignore ├── LICENSE ├── README.md ├── main.tf ├── outputs.tf ├── r53.tf ├── variables.tf └── versions.tf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyscrapers/terraform-ses/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyscrapers/terraform-ses/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyscrapers/terraform-ses/HEAD/README.md -------------------------------------------------------------------------------- /main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyscrapers/terraform-ses/HEAD/main.tf -------------------------------------------------------------------------------- /outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyscrapers/terraform-ses/HEAD/outputs.tf -------------------------------------------------------------------------------- /r53.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyscrapers/terraform-ses/HEAD/r53.tf -------------------------------------------------------------------------------- /variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyscrapers/terraform-ses/HEAD/variables.tf -------------------------------------------------------------------------------- /versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.12" 3 | } 4 | --------------------------------------------------------------------------------