mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-22 11:17:35 -05:00
9 lines
145 B
HCL
9 lines
145 B
HCL
resource "terraform_data" "provision" {
|
|
connection {
|
|
host = "localhost"
|
|
}
|
|
provisioner "remote-exec" {
|
|
inline = ["echo test"]
|
|
}
|
|
}
|