我一直在尝试将我的 terraform 代码从一个大文件拆分为单独的模块。我一直遇到运行 Terraform Plan 时出现以下错误的问题。
Error: Incorrect attribute value type
on modules/nsg/main.tf line 11, in resource "azurerm_network_security_group" "InternalProdNSGPrivate":
11: resource_group_name = "${module.rg.main-rg-id}"
Inappropriate value for attribute "resource_group_name": string required.
我创建了一个outputs.tf
文件,其中包含以下内容:
output "main-rg-id" {
value = "${azurerm_resource_group.InternalProd}"
}
该main.tf
模块具有以下内容:
module "global_variables" {
source = "../global_variables"
}
resource "azurerm_resource_group" "InternalProd" {
name = "Internal"
location = "${module.global_variables.location}"
}
在 NSG 的 main.tf 文件中,我配置了以下内容:
module "rg" {
source = "../rg"
}
module "global_variables" {
source = "../global_variables"
}
resource "azurerm_network_security_group" "InternalProdNSGPrivate" {
name = "Internal-NSG"
location = "${module.global_variables.location}"
resource_group_name = "${module.rg.main-rg-id}"
....
}
不知道我在哪里配置错误。尝试查看多个不同的资源、博客等,但没有运气。