【发布时间】:2018-07-31 03:45:53
【问题描述】:
CloudFormation 模板是否有保留字、变量等?我指定了一个名为“Config”的 DynamoDB 表:
# ...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
...并应用了模板,但没有创建资源。我在 CloudFormation 控制台中看不到任何错误。
【问题讨论】:
-
你的表名是
my-app-config
标签: amazon-web-services amazon-cloudformation