将新创建的实例添加到 ebs 快照调度程序时遇到问题
Trouble adding a newly created instance to ebs snapshot scheduler
EC2 EBS 卷每天自动执行并保留 30 天,由 AWS 处理:EBS Snapshot Scheduler,https://aws.amazon.com/answers/infrastructure-management/ops-automator/。
并且有一个最近创建的实例,想添加这个实例来每天创建它的 ebs 快照,但是我找不到 where/how 将这个规则更新为之前创建的上述配置.. 请帮忙!
您应该查看文档中的附录 D 以设置 Ops Automator。它讨论了如何为操作识别资源:
The AWS Ops Automator uses a custom tag key (name) to identify
resources that will receive automated actions. The default tag key is
OpsAutomatorTaskList but you can modify it during initial
configuration of the solution’s AWS CloudFormation template. The value
of the OpsAutomatorTaskList tag contains a comma-separated list of
tasks you want the solution to perform on that resource.
这意味着您应该在现有 EBS 卷上有一个标签,用于识别它们的操作以及这些操作是什么。每个 action has an associated CloudFormation template,请参阅同一 PDF 中的附录 A:
The AWS Ops Automator automatically generates a separate AWS
CloudFormation template for each action. Review the template
parameters and modify them as necessary.
同一附录还解释了每个操作模板的作用。从关于快照的那些开始。
EC2 EBS 卷每天自动执行并保留 30 天,由 AWS 处理:EBS Snapshot Scheduler,https://aws.amazon.com/answers/infrastructure-management/ops-automator/。
并且有一个最近创建的实例,想添加这个实例来每天创建它的 ebs 快照,但是我找不到 where/how 将这个规则更新为之前创建的上述配置.. 请帮忙!
您应该查看文档中的附录 D 以设置 Ops Automator。它讨论了如何为操作识别资源:
The AWS Ops Automator uses a custom tag key (name) to identify resources that will receive automated actions. The default tag key is OpsAutomatorTaskList but you can modify it during initial configuration of the solution’s AWS CloudFormation template. The value of the OpsAutomatorTaskList tag contains a comma-separated list of tasks you want the solution to perform on that resource.
这意味着您应该在现有 EBS 卷上有一个标签,用于识别它们的操作以及这些操作是什么。每个 action has an associated CloudFormation template,请参阅同一 PDF 中的附录 A:
The AWS Ops Automator automatically generates a separate AWS CloudFormation template for each action. Review the template parameters and modify them as necessary.
同一附录还解释了每个操作模板的作用。从关于快照的那些开始。