Skip to content

Instantly share code, notes, and snippets.

@Ninir
Created December 21, 2015 11:04
Show Gist options
  • Save Ninir/85551fae5fdf9d9bc22b to your computer and use it in GitHub Desktop.
Save Ninir/85551fae5fdf9d9bc22b to your computer and use it in GitHub Desktop.
Get the ARN of a DynamoDB table created in a CloudFormation stack
{
...
"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