2

我正在尝试在我的 Terraform 代码中使用模块作为依赖项。但即使在模块中提到特定的源路径后,它也会给出错误“模块目录不存在或无法读取。”和“无法评估目录 - 系统找不到指定的文件。” 谁能告诉我可能是什么原因。

我必须管理 3 个不同的环境,每个环境有 3 个不同的后端状态文件。这里每个主文件调用各自的模块文件。主文件夹包括后端配置,资源组的创建,它调用模块文件

      root
        |
        |-- main 
        |    |--prod  
        |    |--dev    
        |    |--staging
        |-- modules
        |    |--prod   
        |    |--dev     
        |    |--staging

- - - - - - 代码 - - - - - - - - -

    provider "azurerm" {
    version = "=2.2.0"
   features {}
    }

    #--- CREATING RESOURCE GROUP PER ENVIRONEMENT
    terraform {
      backend "azurerm" {
        resource_group_name  = ""
        storage_account_name = ""
        container_name       = ""
        key                  = ""
        }
      }


    variable "location" {
      description           =   "Location for deployment of the Azure 
    resources"
   }

     variable "Code" {
       description           =   "Enter a unique two-letter ID to identify 
    customer resources; should match the DynamoDB table."
    }

     variable "EnvironmentType" {
       description       = "Enter a valid environment type. Valid values are 
     Prod, Dev, Staging"
      }

    variable "AccountType" {
      description   = "Select the type of account you wish to create. This 
       will determine which environments and other resources are created."
       }


     resource "azurerm_resource_group" "main" {
      name        = "${var.Code}-${var.EnvironmentType}"
      location    = "${var.location}"
     }

     module "ResourcesStack" {
        source                      = "./modules"
        AccountType                 = "${var.AccountType}"
        CustomerCode                = "${var.Code}"
        EnvironmentType             = "${var.EnvironmentType}"
        location                    = "${var.location}"
      }
4

2 回答 2

4

好吧,通过通信,然后我认为您在引用 Terraform 代码中的模块时犯了错误。

错误是当你想引用模块时,你需要引用特殊的。例如,您想引用模块 dev,那么您可以在 Terraform 代码中引用它,如下所示:

module "dev" {
  source      = "./modules/dev"
  ...
}

不要像你那样用所有模块的根路径设置模块源。

于 2020-03-27T09:32:12.870 回答
0

始终确保目录的名称是模块而不是模块。我遇到了同样的问题,在更新目录名称后,它得到了解决。

于 2021-05-22T14:03:17.687 回答