是否可以在 terraform 字符串插值中对整数值进行舍入?
这有点黑客行为,并且不使用 terraform 字符串插值,但是..
您可以通过将外部数据源委托给另一个程序来使用外部数据源 (https://www.terraform.io/docs/providers/external/data_source.html) 来执行此操作。我包含的示例使用 bash 和 jq。然而,你可能可以在没有 jq 的情况下实现这一目标。
地形:
data external "rounder" {
program = ["bash", "${path.module}/round.sh"]
query {
value="1.3"
}
}
output "round" {
value = "${data.external.rounder.result.value}"
}
round.sh:
#!/usr/bin/env bash
# Exit if any of the intermediate steps fail
set -e
eval "$(jq -r '@sh "VALUE=\(.value)"')"
ROUNDED=$(printf "%.0f\n" $VALUE)
jq -n --arg rounded "$ROUNDED" '{"value":$rounded}'
这里有一个关于在 terraform 中支持“round”的问题:https://github.com/hashicorp/terraform/issues/16251
还有另一种原生的 terraform 方法可以做到这一点,不确定它是否是新的,但我刚刚发现它并认为我应该将其添加到此处以供参考:
format("%.2f", data.aws_ec2_spot_price.emr.spot_price)
这将以 2 位数字的形式返回我的 Spot_price,这使用 format 函数中的宽度运算符
宽度修饰符可以包含在紧接动词字母之前的可选十进制数字中,以指定将使用多少个字符来表示该值。可以在(可选)宽度后用句点 (.) 后跟十进制数指定精度。如果省略宽度或精度,则根据给定值选择默认值。例如:
序列结果
- %f 默认宽度和精度。
- %9f 宽度 9,默认精度。
- %.2f 默认宽度,精度2。
- %9.2f 宽度 9,精度 2。
您可以使用地板或天花板进行圆形化,例如
$ terraform console
> floor(4.4999 + 0.5)
4
> floor(4.5 + 0.5)
5