如何向使用 SAM 部署的 cloudformation 堆栈添加堆栈级标签

发布于 2025-01-11 11:08:40 字数 417 浏览 0 评论 0原文

我尝试在使用 SAM 部署时将标签添加到堆栈,但它们没有显示。 SAM cli 命令代码可在下面找到。

sam deploy --stack-name test-stack --resolve-image-repos --capabilities CAPABILITY_NAMED_IAM --no-fail-on-empty-changeset --template-file ./.aws-sam/build/template.yaml --resolve-s3 --tags Name=test-stack az:zone=infra

尽管向 cli 提供了 —tag 参数,但 CloudFormation 堆栈中并未创建标签。

有人可以告诉我如何将堆栈级标签添加到使用 SAM CLI 部署的 CloudFormation 堆栈吗?

I'm trying to add tags to a stack while using SAM deploy, but they're not showing up.
The SAM cli command code can be found below.

sam deploy --stack-name test-stack --resolve-image-repos --capabilities CAPABILITY_NAMED_IAM --no-fail-on-empty-changeset --template-file ./.aws-sam/build/template.yaml --resolve-s3 --tags Name=test-stack az:zone=infra

Tags are not being created in the CloudFormation stack despite giving the —tag parameter to the cli.

Can someone tell me how to add stack-level tags to the CloudFormation stack that is deployed using SAM CLI?

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

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

发布评论

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

评论(1

傲影 2025-01-18 11:08:41

我宁愿建议将它们放在 samconfig.toml 文件中,例如:

[default.deploy.parameters]
stack_name = "your-application"
s3_bucket = "your-s3-for-cloudformation-stuff"
s3_prefix = "your-folder-name"
...
tags = "Name=\"test-stack\" az:zone=\"infra\""

这会将标签向下传播到堆栈的所有资源(包括 CloudFormation 堆栈本身)

I'll rather suggest to put them in the samconfig.toml file, like:

[default.deploy.parameters]
stack_name = "your-application"
s3_bucket = "your-s3-for-cloudformation-stuff"
s3_prefix = "your-folder-name"
...
tags = "Name=\"test-stack\" az:zone=\"infra\""

That will propagate tags down to all the resources of the stack (including CloudFormation stack itself)

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