Files
2023-11-10 13:51:39 +01:00

9 lines
145 B
HCL

resource "terraform_data" "provision" {
connection {
host = "localhost"
}
provisioner "remote-exec" {
inline = ["echo test"]
}
}