需要添加“资源标签”在“启动模板”中从 CLI 启动 AWS 实例之前

发布于 2025-01-11 08:19:14 字数 445 浏览 0 评论 0原文

我有一个“启动模板”,用于从 AWS UI 创建 AWS 实例。在创建实例之前,我们只需要更新模板中称为“hostid”的“资源标签”,然后点击“启动实例”。 “hostid”资源标签将用于构建实例的实际 FQDN,因此每次启动新实例时我都必须更新它。这是一个示例:

在此处输入图像描述

我已经能够从 CLI 调用“启动模板”并且它可以工作。但是,我还没有弄清楚如何从 CLI 添加(或更新)hostid“资源标签”,因为我必须在 UI 中手动更新标签,这违背了使用 CLI 的目的。

知道如何从 CLI 或可编写脚本的位置在“启动模板”中添加或更新“资源标签”吗?

谢谢!

I have a "Launch Template" which I use to create AWS instances from the AWS UI. Before creating an instance we just need to update a "Resource tag" in the template which is called "hostid" and then we hit "Launch Instance". The "hostid" resource tag will be used to build the actual FQDN of the instance and hence I have to update it every time I launch a new instance. Here is an example:

enter image description here

I have been able to call the "Launch Template" from the CLI and it works. However I have not figured how to add (or update) the hostid "Resource tag" from CLI, because of that I have to update the Tag manually in the UI which defeats the purpose of using the CLI.

Any Idea how to add or update a "Resource tag" in a "Launch Template" from the CLI or from a scriptable place?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

何其悲哀 2025-01-18 08:19:14

您无法修改启动模板 (LT),因为 LT 是不可变的。相反,您必须创建它的新版本

创建启动模板后,您可以创建新版本并添加具有最新版本应用程序的 AMI 和用户数据以进行测试。

您可以使用 create-launch- 来执行此操作模板版本 CLI 命令。使用此命令您可以指定TagSpecifications

启动期间应用于资源的标签。您只能在启动时标记实例和卷。指定的标签将应用于启动期间创建的所有实例或卷。要在创建资源后对其进行标记,请参阅 CreateTags 。

You can't modify a Launch Template (LTs) as LTs are immutable. Instead, you have to create a new version of it:

After you create your launch template, you can create a new version and add the AMI and user data that has the latest version of your application for testing.

You do this using create-launch-template-version CLI command. Using this command you can specify TagSpecifications:

The tags to apply to the resources during launch. You can only tag instances and volumes on launch. The specified tags are applied to all instances or volumes that are created during launch. To tag a resource after it has been created, see CreateTags .

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文