Created
December 21, 2015 11:04
-
-
Save Ninir/85551fae5fdf9d9bc22b to your computer and use it in GitHub Desktop.
Get the ARN of a DynamoDB table created in a CloudFormation stack
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
... | |
"Fn::Join": [ | |
"", | |
[ | |
"arn:aws:dynamodb:", | |
{ | |
"Ref": "AWS::Region" | |
}, | |
":", | |
{ | |
"Ref": "AWS::AccountId" | |
}, | |
":table/", | |
{ | |
"Ref": "DynamoDBTable" | |
} | |
] | |
] | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment