Question: Is <https://github.com/pulumi/pulumi-aws...
# docs
e
Question: Is https://github.com/pulumi/pulumi-aws/blob/master/sdk/nodejs/sns/topicSubscription.ts#L84 accurate? The docs say it should be an ARN, but the actual code looks like its using
pulumi.Output<Topic>
, not the ARN. I stumbled across this looking at this section of the lambda docs: https://www.pulumi.com/docs/reference/pkg/nodejs/pulumi/aws/lambda/#usage-with-sns - the example code passes
Copy code
topic: defaultTopic.arn,
but this causes errors in my IDE (as well as at compile time)
w
Yes - that is indeed wrong. This will be fixed with https://github.com/pulumi/pulumi-aws/pull/876. Cc @broad-dog-22463 .
b
FYI that’s on the list to be closed out this week!!
e
Awesome, thanks y'all!