我有一个全局变量文件,我想在不同的子文件夹中使用。为此,我将其放在一个名为shared的文件夹中,然后在其他子文件夹中进行了符号链接。
shared
.global_variables.tf
s3
.gloabl_variables -> shared/global_variables.tf
.main.tf
.output.tf
.variables.tf
我使用以下命令创建了符号链接:ln -s shared/global_variables.tf s3/global_variables.tf
如果我运行terraform init
,现在在S3文件夹中,我将收到此错误:
Error: Failed to read file
The file "global_variables.tf" could not be read
似乎terraform无法识别文件的符号链接。
如何解决?
谢谢