如何在Terraform设置的资源(Windows或Linux计算机)上写入文件

时间:2019-06-13 00:50:17

标签: file terraform infrastructure-as-a-code

我想知道是否有一种方法可以将文件写入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初始化或Terraform计划时,出现以下错误

Error: Unknown root level key: provisioner

0 个答案:

没有答案