File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ resource "aws_cloudfront_origin_access_control" "static_site" {
2
2
count = local. static_site_s3_enable_encryption && local. enable_cloudfront ? 1 : 0
3
3
4
4
name = " ${ local . project_name } -static-site-s3"
5
- description = " ${ local . project_name } Staic Site S3"
5
+ description = " ${ local . project_name } Static Site S3"
6
6
origin_access_control_origin_type = " s3"
7
7
signing_behavior = " always"
8
8
signing_protocol = " sigv4"
@@ -12,7 +12,7 @@ resource "aws_cloudfront_cache_policy" "static_site" {
12
12
count = local. enable_cloudfront && local. cloudfront_static_site_default_cache_behaviour [" cache_policy_id" ] == null ? 1 : 0
13
13
14
14
name = " ${ local . project_name } -static-site-s3-default"
15
- comment = " ${ local . project_name } Staic Site S3 default"
15
+ comment = " ${ local . project_name } Static Site S3 default"
16
16
default_ttl = 86400
17
17
max_ttl = 31536000
18
18
min_ttl = 1
@@ -34,7 +34,7 @@ resource "aws_cloudfront_origin_request_policy" "static_site" {
34
34
count = local. enable_cloudfront && local. cloudfront_static_site_default_cache_behaviour [" origin_request_policy_id" ] == null ? 1 : 0
35
35
36
36
name = " ${ local . project_name } -static-site-s3-default"
37
- comment = " ${ local . project_name } Staic Site S3 default"
37
+ comment = " ${ local . project_name } Static Site S3 default"
38
38
39
39
cookies_config {
40
40
cookie_behavior = " none"
You can’t perform that action at this time.
0 commit comments