Skip to content

Commit

Permalink
docs: fix AWS template to avoid confusing syntax
Browse files Browse the repository at this point in the history
Amazon's latest visual template editor doesn't like Fn::Join but
does like !Join. So give it what it wants.
  • Loading branch information
mikix committed Apr 9, 2024
1 parent 1bedc98 commit 9f342e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/setup/cumulus-aws-template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,8 @@ Resources:
Properties:
CatalogId: !Ref AWS::AccountId
DatabaseInput:
Name:
Fn::Join: # replace hyphens with underscores for ease of SQL (hyphens are reserved)
# replace hyphens with underscores for ease of SQL (hyphens are reserved)
Name: !Join
- '_'
- Fn::Split:
- '-'
Expand Down

0 comments on commit 9f342e0

Please sign in to comment.