From 806cf3c19225f50f5a0a122c37cf8f2200820f08 Mon Sep 17 00:00:00 2001 From: Ricardo Mendes Date: Fri, 24 May 2024 15:20:10 -0300 Subject: [PATCH] chore: fix typo in the KMS key description (#51) --- infrastructure/modules/core/kms.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/modules/core/kms.tf b/infrastructure/modules/core/kms.tf index fd4da8f..39cbd24 100644 --- a/infrastructure/modules/core/kms.tf +++ b/infrastructure/modules/core/kms.tf @@ -7,7 +7,7 @@ # https://docs.aws.amazon.com/AmazonS3/latest/userguide/UsingEncryption.html for further # details. resource "aws_kms_key" "s3" { - description = "This key that protects S3 objects tackled by the AWS Glue CI/CD Blueprint" + description = "This key protects S3 objects tackled by the AWS Glue CI/CD Blueprint" enable_key_rotation = true }