From 7f1a7b04268a507cd82abfa0110fc8c39394f077 Mon Sep 17 00:00:00 2001 From: Dan Miller Date: Mon, 24 Oct 2022 16:29:05 -0700 Subject: [PATCH] Fix Perma-Drift with Replicas (#107) * explicitly set replica attrs * make github/init, updated set-outputs * Auto Format * test github_output from workflow * Auto Format Co-authored-by: cloudpossebot <11232728+cloudpossebot@users.noreply.github.com> --- main.tf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/main.tf b/main.tf index 1f4fe84..cda1c96 100644 --- a/main.tf +++ b/main.tf @@ -107,6 +107,10 @@ resource "aws_dynamodb_table" "default" { for_each = var.replicas content { region_name = replica.value + # If kms_key_arn is null, the provider uses the default key + kms_key_arn = null + propagate_tags = false + point_in_time_recovery = false } }