This repository was archived by the owner on Jun 19, 2024. It is now read-only.
File tree 3 files changed +18
-5
lines changed
components/terraform/static-site
3 files changed +18
-5
lines changed Original file line number Diff line number Diff line change 1
1
module "cdn" {
2
2
source = " cloudposse/cloudfront-s3-cdn/aws"
3
- version = " 0.83 .0"
3
+ version = " 0.90 .0"
4
4
5
- name = " static-site"
6
- website_enabled = true
5
+ name = " static-site"
6
+ website_enabled = true
7
+ cloudfront_access_logging_enabled = false
7
8
8
9
context = module. this . context
9
10
}
Original file line number Diff line number Diff line change
1
+ terraform {
2
+ required_version = " >= 1.0.0"
3
+
4
+ required_providers {
5
+ aws = {
6
+ source = " hashicorp/aws"
7
+ # Note, we are not upgrading to v5 until this issue is resolved:
8
+ # https://github.com/cloudposse/terraform-aws-cloudfront-s3-cdn/issues/279
9
+ version = " < 5"
10
+ }
11
+ }
12
+ }
Original file line number Diff line number Diff line change @@ -5,8 +5,8 @@ terraform:
5
5
backend :
6
6
s3 :
7
7
encrypt : true
8
- bucket : " acme-ue2-tfstate-TODO"
8
+ bucket : " acme-ue2-root- tfstate-TODO"
9
9
key : " terraform.tfstate"
10
- dynamodb_table : " acme-ue2-tfstate-lock-TODO"
10
+ dynamodb_table : " acme-ue2-root- tfstate-lock-TODO"
11
11
acl : " bucket-owner-full-control"
12
12
region : " us-east-2"
You can’t perform that action at this time.
0 commit comments