我想知道是否有一种方法可以将文件写入 Terraform 提供的 Linux 或 Windows 机器。例如,我想将一个文件写入 D:\temp\myfile.txt,其中应该包含我可以从 main.tf 传递的信息。
我尝试使用以下
provisioner "file" {
content = EOF
this myfile which is created using Terraform and will have all data which i write
EOF
destination = "/app/iac/myfile.txt"
}
但是当我运行 Terraform init 或 terraform plan 时,我收到以下错误
Error: Unknown root level key: provisioner