From 6d4de058ed5aadeb8e049a73275606f35cdce69b Mon Sep 17 00:00:00 2001 From: Allan Denot Date: Mon, 2 May 2022 11:00:54 +1000 Subject: [PATCH] Add condition to avoid resource recreation (#8) --- main.tf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.tf b/main.tf index a415681..8728675 100644 --- a/main.tf +++ b/main.tf @@ -43,6 +43,8 @@ resource "aws_backup_selection" "backup_selection" { key = var.selection_tag_key value = var.selection_tag_value } + + condition {} }