Hey all, how do I share\export resources from pulu...
# aws
b
Hey all, how do I share\export resources from pulumi to cloudformation? I have a couple of lambda functions built with serverless framework, where resources are created with cloudformation templates. I also have a couple of Fargate services behind ALB – this part is handled by pulumi. I want to reference alb listener arn in serverless template. What would be the sane way of doing it?
g
Storing the listener ARN in SSM parameter store (you can do this in your pulumi app) and then referencing that from your cloudformation template is probably the best option.
👍 1