From 682ae5641e12a22f6a0a69e946692c5cbe98669a Mon Sep 17 00:00:00 2001 From: "Matthew C. Morgan" Date: Thu, 12 Feb 2026 17:28:55 -0500 Subject: [PATCH] id instead of stack_id --- common/outputs.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/outputs.tf b/common/outputs.tf index d0cf5d6..138a408 100644 --- a/common/outputs.tf +++ b/common/outputs.tf @@ -30,7 +30,7 @@ output "provisioned_product_status_message" { output "cloudformation_stack_arn" { description = "The ARN of the CloudFormation stack" - value = var.retrieve_stack_outputs ? try(data.aws_cloudformation_stack.this[0].stack_id, null) : null + value = var.retrieve_stack_outputs ? try(data.aws_cloudformation_stack.this[0].id, null) : null } output "launch_role_arn" {