azure 读取模块目录失败

w8biq8rn  于 2023-05-29  发布在  其他
关注(0)|答案(1)|浏览(211)

我有一个文件夹结构在下面的格式

demo
   proj
     terraform
       myfile.tf

这些模块位于以下路径中

demo
   modules
     terraform
       myconfigfiles
         vmcreation

如何在terraform中调用模块。源的路径不起作用。我试过了,但是不管用

source = "../modules/terraform/myconfigfiles/vmcreation"

我在terraform init期间收到此错误

Error: Unreadable module directory
│ 
│ Unable to evaluate directory symlink: CreateFile ..\modules: The system
│ cannot find the file specified.
╵

╷
│ Error: Failed to read module directory
│ 
│ Module directory  does not exist or cannot be read.
pcww981p

pcww981p1#

根模块配置和声明的模块之间的相对路径需要另一个..前缀:

source = "../../modules/terraform/myconfigfiles/vmcreation"

相关问题