我在 module/variables.tf 中配置了以下变量
variable "instance_name" {
type = string
default = "instance-1"
description = "Name of the instance."
}
我指的是同一个模块 module/main.tf 中的变量,如下所示
resource "google_compute_instance" "cloud_instance" {
name = var.instance_name
}
但是,当我运行 terraform init 时,出现以下错误-
Error: Error parsing /module/main.tf: At 15:12: Unknown token: 15:12 IDENT var.instance_name
知道为什么会这样吗?