我创建了一个计算模块,该模块具有创建外部IP的条件。
resource "google_compute_address" "external" {
count = "${var.EXT_IP_CREATE ? 1 : 0}"
name = "${var.NAME}-ext-ip"
address_type = "EXTERNAL"
region = "${var.REGION}"}
在计算实例资源块中,我具有以下网络接口配置:
network_interface {
network= "${var.NETWORK}"
network_ip = "${google_compute_address.internal.address}"
access_config {
nat_ip = "${var.EXT_IP_CREATE ? google_compute_address.external.address : 0 }"
}
}
如果尚未创建资源google_compute_address.external,则需要将nat_ip设置为null或换句话说为0。
看起来应该可以,但是不能。
将EXT_IP_CREATE设置为true时,TF成功创建资源。将其设置为false时,会出现以下错误:
Error: Error running plan: 1 error(s) occurred:
* module.compute-dbma-dev.google_compute_instance.compute: 1 error(s) occurred:
* module.compute-dbma-dev.google_compute_instance.compute: Resource 'google_compute_address.external' not found for variable 'google_compute_address.external.address'
当我显式传递nat_ip = 0时,TF会识别空白值并成功创建没有外部IP的计算实例。
Im当前在Terraform版本Terraform v0.11中。可能有一个超级简单的解决方案,但我只是从TF中的条件开始,然后陷入困境。
谢谢!
答案 0 :(得分:1)
两种解决方法:
TF_WARN_OUTPUT_ERRORS=1 terraform apply
${element(concat(google_compute_address.*.address, list("")), 0)}
答案 1 :(得分:0)
当我尝试使用类似的条件时,出现以下错误:
* google_compute_instance.main: __builtin_StringToInt: strconv.ParseInt: parsing "": invalid syntax in:
${var.external_ip != "" ? var.external_ip : 0}
根据GCP API当前的工作方式,我看不到如何有条件地附加外部IP [1]:
networkInterfaces[].accessConfigs[].natIP => string
An external IP address associated with this instance. Specify an unused static external IP address available to the project or leave this field undefined to use an IP from a shared ephemeral IP address pool. If you specify a static external IP address, it must live in the same region as the zone of the instance.
[1] https://cloud.google.com/compute/docs/reference/rest/v1/instances