Terraform 不读取符号链接文件

use*_*406 5 terraform

我有一个全局变量文件,我想在不同的子文件夹中使用它。为此,我将其放在名为共享的文件夹中,然后在其他子文件夹中创建了符号链接。

shared
  .global_variables.tf
s3
  .gloabl_variables -> shared/global_variables.tf
  .main.tf
  .output.tf
  .variables.tf
Run Code Online (Sandbox Code Playgroud)

我使用以下命令创建了符号链接:ln -s shared/global_variables.tf s3/global_variables.tf

现在在 S3 文件夹中,如果我运行,terraform init我会收到此错误:

Error: Failed to read file
The file "global_variables.tf" could not be read
Run Code Online (Sandbox Code Playgroud)

terraform 似乎无法识别文件的符号链接。

怎么解决呢?

谢谢