0

我一直在尝试将我的 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}"
....
}

不知道我在哪里配置错误。尝试查看多个不同的资源、博客等,但没有运气。

4

1 回答 1

1

azurerm_resource_group.InternalProd是一个代表整个的对象resource "azurerm_resource_group" "InternalProd"

要仅生成该对象的 id,您可以id像这样访问属性:

output "main-rg-id" {
  value = azurerm_resource_group.InternalProd.id
}
于 2019-11-20T00:08:03.657 回答