terraform 所需的基本脚本帮助

发布于 2025-01-11 06:02:30 字数 419 浏览 0 评论 0原文

我在 terraform 中有这个本地:

aws-temporary = var.environment == "dev" ? "aws." : ""

现在这被称为 in line:

name    = "${var.hostname}.${local.aws-temporary}${data.aws_route53_zone.management_zone.name}"

现在,当“var.environment”是 dev .. 它确实在名称中添加了“.aws”。但是,当它不是 dev .. 时,它不会添加“.aws”。

我想要的是它在 dev 和其他环境中添加 .aws.. 但不在 dev2 中添加。

我将如何修改本地来做到这一点?任何帮助将不胜感激。谢谢

I have this local in terraform:

aws-temporary = var.environment == "dev" ? "aws." : ""

now this is called in line:

name    = "${var.hostname}.${local.aws-temporary}${data.aws_route53_zone.management_zone.name}"

Now when the "var.environment" is dev .. it does add the ".aws" in the name. However, when it is something else than dev .. it does not add the ".aws".

What I want is that it adds the .aws in dev and other envs.. but not add in dev2.

How would I modify the local to do that? any help would be appreciated. thank you

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

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

发布评论

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

评论(1

浪漫人生路 2025-01-18 06:02:30

我只是将条件切换为:

aws-temporary = var.environment == "dev2" ? "" : "aws."

或相同的另一种变体:

aws-temporary = var.environment != "dev2" ? "aws." : ""

I would just switch the condition to:

aws-temporary = var.environment == "dev2" ? "" : "aws."

Or another variation of the same:

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