我想在Terraform中使用环境变量,但我的TF代码不识别TF_VAR。我设置为环境变量export TF_VAR_test="some value"
,并试图在我的TF代码中使用tempval = var.test
。
起程拓殖<<p>使用strong> v1.0.2我错过了什么?请告诉我。谢谢。
在使用变量之前,必须在变量块中声明该变量。
例如…
variable "test" {
type = string
}