如何向使用 SAM 部署的 cloudformation 堆栈添加堆栈级标签
我尝试在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我宁愿建议将它们放在
samconfig.toml
文件中,例如:这会将标签向下传播到堆栈的所有资源(包括 CloudFormation 堆栈本身)
I'll rather suggest to put them in the
samconfig.toml
file, like:That will propagate tags down to all the resources of the stack (including CloudFormation stack itself)