Skip to content

Commit f061a80

Browse files
committed
Fix 'Static' typo
1 parent d421b01 commit f061a80

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cloudfront-static-site.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ resource "aws_cloudfront_origin_access_control" "static_site" {
22
count = local.static_site_s3_enable_encryption && local.enable_cloudfront ? 1 : 0
33

44
name = "${local.project_name}-static-site-s3"
5-
description = "${local.project_name} Staic Site S3"
5+
description = "${local.project_name} Static Site S3"
66
origin_access_control_origin_type = "s3"
77
signing_behavior = "always"
88
signing_protocol = "sigv4"
@@ -12,7 +12,7 @@ resource "aws_cloudfront_cache_policy" "static_site" {
1212
count = local.enable_cloudfront && local.cloudfront_static_site_default_cache_behaviour["cache_policy_id"] == null ? 1 : 0
1313

1414
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"
1616
default_ttl = 86400
1717
max_ttl = 31536000
1818
min_ttl = 1
@@ -34,7 +34,7 @@ resource "aws_cloudfront_origin_request_policy" "static_site" {
3434
count = local.enable_cloudfront && local.cloudfront_static_site_default_cache_behaviour["origin_request_policy_id"] == null ? 1 : 0
3535

3636
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"
3838

3939
cookies_config {
4040
cookie_behavior = "none"

0 commit comments

Comments
 (0)