Skip to content

Commit

Permalink
Merge pull request #229 from nulib/deploy/staging
Browse files Browse the repository at this point in the history
Uniquify chat feedback bucket name
  • Loading branch information
mbklein authored Jul 18, 2024
2 parents 78f02bf + 2c467c0 commit 5c6322c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -730,7 +730,11 @@ Resources:
chatFeedbackBucket:
Type: 'AWS::S3::Bucket'
Properties:
BucketName: !Sub "${AWS::StackName}-chat-feedback"
BucketName:
Fn::Join:
- "-"
- - !Sub "${AWS::StackName}-chat-feedback"
- !Select [2, !Split ['/', !Ref AWS::StackId]]
chatFeedbackTopic:
Type: AWS::SNS::Topic
Properties:
Expand Down

0 comments on commit 5c6322c

Please sign in to comment.