Skip to content

Commit

Permalink
Uniquify chat feedback bucket name
Browse files Browse the repository at this point in the history
  • Loading branch information
mbklein committed Jul 18, 2024
1 parent eb8143f commit 2c467c0
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 2c467c0

Please sign in to comment.