作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试在使用 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 堆栈?
最佳答案
我宁愿建议将它们放在 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 堆栈本身)
关于amazon-web-services - 如何将堆栈级标签添加到使用 SAM 部署的 cloudformation 堆栈,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71334104/
我是一名优秀的程序员,十分优秀!