From ab609f4ff0bef60ab256ebb9f1cb5918476d1601 Mon Sep 17 00:00:00 2001 From: Sergey Novikov Date: Fri, 13 Sep 2024 13:54:08 +0200 Subject: [PATCH] Fix issue when RAM resource has deleted duplicate --- data.tf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/data.tf b/data.tf index a67bfb3..7191ee0 100644 --- a/data.tf +++ b/data.tf @@ -1,6 +1,8 @@ data "aws_ram_resource_share" "this" { name = var.transit_gateway_hub_name resource_owner = "SELF" + + resource_share_status = "ACTIVE" } data "aws_ec2_transit_gateway" "this" {