I'm porting a CloudFormation script into Pulumi an...
# aws
h
I'm porting a CloudFormation script into Pulumi and I'm looking at an SNS:Topic. The subscriptions is email but the Pulumi docs (https://www.pulumi.com/docs/reference/pkg/aws/sns/topicsubscription/) say 'email isn't supported - see below' but there is nothing below. Is this because it's auto-generated from Terraform or is something missing?
l
In the Terraform equivalent, it's because email requires a handshake response from the email address before it's enabled. I guess it's the same here?
In Terraform, you can set it up but you have to finalize the subscription manually.
h
makes sense, I'll setup another method. Thank you!