需要添加“资源标签”在“启动模板”中从 CLI 启动 AWS 实例之前
我有一个“启动模板”,用于从 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:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法修改启动模板 (LT),因为 LT 是不可变的。相反,您必须创建它的新版本:
您可以使用 create-launch- 来执行此操作模板版本 CLI 命令。使用此命令您可以指定
TagSpecifications
:You can't modify a Launch Template (LTs) as LTs are immutable. Instead, you have to create a new version of it:
You do this using create-launch-template-version CLI command. Using this command you can specify
TagSpecifications
: