Are there reserved words, variables, etc for CloudFormation templates? I've specified a DynamoDB table called "Config":
# ...standard CF definition
Resources:
# ...other resources that correctly build
Config:
Type: AWS::DynamoDB::Table
Properties:
TableName: my-app-config
AttributeDefinitions:
- AttributeName: name
AttributeType: S
KeySchema:
- AttributeName: name
KeyType: HASH
ProvisionedThroughput:
ReadCapacityUnits: 1
WriteCapacityUnits: 1
...and applied the template, but the resource is not being created. I don't see any errors in the CloudFormation console.
my-app-config- Asdfg