From 4a5d1ac9f856e853678c390fb62c72e842be01ea Mon Sep 17 00:00:00 2001 From: Florian Stadler Date: Fri, 8 Nov 2024 15:49:39 +0100 Subject: [PATCH] Update provider/pkg/resources/cfn_custom_resource.go Co-authored-by: Cory Hall <43035978+corymhall@users.noreply.github.com> --- provider/pkg/resources/cfn_custom_resource.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/provider/pkg/resources/cfn_custom_resource.go b/provider/pkg/resources/cfn_custom_resource.go index 80270269df..afa3a87cde 100644 --- a/provider/pkg/resources/cfn_custom_resource.go +++ b/provider/pkg/resources/cfn_custom_resource.go @@ -250,7 +250,7 @@ func (c *cfnCustomResource) Check(ctx context.Context, urn urn.URN, randomSeed [ } if typedInputs.StackID == nil { - // if the stack ID is not provided, we use the project ID as the stack ID + // if the stack ID is not provided, we use the pulumi stack ID as the stack ID inputs[resource.PropertyKey("stackId")] = resource.NewStringProperty(urn.Stack().String()) }