在使用Cloud Formation创建AWS::MSK::Cluster
时,我无法以通常的方式设置Tags
:
Tags:
- Key: Name
Value: !Ref Identifier
由于此错误:
Property validation failure: [Value of property {/Tags} does not match type {Map}]
截至撰写本文时,文档指出,我应该使用Type: List of Tag
代替通常的Type: Json
。
同样的文档指出:
You can specify tags in JSON or in YAML, depending on which format you use for your template
答案 0 :(得分:4)
经过进一步调查(和AWS支持帮助),工作示例(仅在创建时)如下所示:
Tags:
Name: !Ref Identifier
此外,当尝试显示一个稍微令人困惑的错误时,无法修改标签(文档实际上声明标签已更改需要替换):
CloudFormation cannot update a stack when a custom-named resource requires replacing. Rename kafka-eu-west-1-dev and update the stack again.