我不知道如何使用Cloud Custodian在AWS中标记快照...
文档中的示例如下:
resource: ec2
actions:
- type: snapshot
tags:
CloudCustodian: true 但这不起作用;没有任何内容被标记。我试过一些其他的方法,但是没有成功。
发布于 2020-10-06 19:07:46
我认为问题在于你的行为不准确。
尝试:
actions:
- type: tag
tags:
CloudCustodian: true Doc在这里列出了标记操作的适当类型:https://cloudcustodian.io/docs/aws/resources/aws-common-actions.html#aws-common-actions-tag
https://stackoverflow.com/questions/63023167
复制相似问题