├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── r53-alias ├── main.tf ├── variables.tf └── versions.tf ├── r53-cname ├── main.tf ├── variables.tf └── versions.tf ├── site-main ├── deployer_role_policy.json ├── main.tf ├── outputs.tf ├── variables.tf ├── versions.tf └── website_bucket_policy.json └── site-redirect ├── deployer_role_policy.json ├── main.tf ├── outputs.tf ├── variables.tf ├── versions.tf └── website_redirect_bucket_policy.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyscrapers/terraform-website-s3-cloudfront-route53/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyscrapers/terraform-website-s3-cloudfront-route53/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyscrapers/terraform-website-s3-cloudfront-route53/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyscrapers/terraform-website-s3-cloudfront-route53/HEAD/README.md -------------------------------------------------------------------------------- /r53-alias/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyscrapers/terraform-website-s3-cloudfront-route53/HEAD/r53-alias/main.tf -------------------------------------------------------------------------------- /r53-alias/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyscrapers/terraform-website-s3-cloudfront-route53/HEAD/r53-alias/variables.tf -------------------------------------------------------------------------------- /r53-alias/versions.tf: -------------------------------------------------------------------------------- 1 | 2 | terraform { 3 | required_version = ">= 0.12" 4 | } 5 | -------------------------------------------------------------------------------- /r53-cname/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyscrapers/terraform-website-s3-cloudfront-route53/HEAD/r53-cname/main.tf -------------------------------------------------------------------------------- /r53-cname/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyscrapers/terraform-website-s3-cloudfront-route53/HEAD/r53-cname/variables.tf -------------------------------------------------------------------------------- /r53-cname/versions.tf: -------------------------------------------------------------------------------- 1 | 2 | terraform { 3 | required_version = ">= 0.12" 4 | } 5 | -------------------------------------------------------------------------------- /site-main/deployer_role_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyscrapers/terraform-website-s3-cloudfront-route53/HEAD/site-main/deployer_role_policy.json -------------------------------------------------------------------------------- /site-main/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyscrapers/terraform-website-s3-cloudfront-route53/HEAD/site-main/main.tf -------------------------------------------------------------------------------- /site-main/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyscrapers/terraform-website-s3-cloudfront-route53/HEAD/site-main/outputs.tf -------------------------------------------------------------------------------- /site-main/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyscrapers/terraform-website-s3-cloudfront-route53/HEAD/site-main/variables.tf -------------------------------------------------------------------------------- /site-main/versions.tf: -------------------------------------------------------------------------------- 1 | 2 | terraform { 3 | required_version = ">= 0.12" 4 | } 5 | -------------------------------------------------------------------------------- /site-main/website_bucket_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyscrapers/terraform-website-s3-cloudfront-route53/HEAD/site-main/website_bucket_policy.json -------------------------------------------------------------------------------- /site-redirect/deployer_role_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyscrapers/terraform-website-s3-cloudfront-route53/HEAD/site-redirect/deployer_role_policy.json -------------------------------------------------------------------------------- /site-redirect/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyscrapers/terraform-website-s3-cloudfront-route53/HEAD/site-redirect/main.tf -------------------------------------------------------------------------------- /site-redirect/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyscrapers/terraform-website-s3-cloudfront-route53/HEAD/site-redirect/outputs.tf -------------------------------------------------------------------------------- /site-redirect/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyscrapers/terraform-website-s3-cloudfront-route53/HEAD/site-redirect/variables.tf -------------------------------------------------------------------------------- /site-redirect/versions.tf: -------------------------------------------------------------------------------- 1 | 2 | terraform { 3 | required_version = ">= 0.12" 4 | } 5 | -------------------------------------------------------------------------------- /site-redirect/website_redirect_bucket_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyscrapers/terraform-website-s3-cloudfront-route53/HEAD/site-redirect/website_redirect_bucket_policy.json --------------------------------------------------------------------------------