From 6f6e70e9acbe9fb813fd51cf84215bccb95f4019 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Taveira=20Ara=C3=BAjo?= Date: Wed, 18 Oct 2023 15:14:53 -0700 Subject: [PATCH] fix(collection): add outputs (#28) Add output for each of the resources created by collection. --- apps/collection/template.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/apps/collection/template.yaml b/apps/collection/template.yaml index 7a30adb9..5ee653b0 100644 --- a/apps/collection/template.yaml +++ b/apps/collection/template.yaml @@ -185,3 +185,11 @@ Resources: Parameters: BucketName: !Ref Bucket TopicARN: !Ref Topic + +Outputs: + Bucket: + Description: "S3 Bucket ARN" + Value: !GetAtt Bucket.Arn + Topic: + Description: "SNS Topic ARN" + Value: !Ref Topic