Skip to content
Snippets Groups Projects
Commit a557ca3a authored by Ryan Randles Jones's avatar Ryan Randles Jones
Browse files

Update main.tf

parent 0f36e0ae
No related branches found
No related tags found
No related merge requests found
......@@ -114,3 +114,16 @@ resource "openstack_compute_interface_attach_v2" "terraform2" {
instance_id = "${openstack_compute_instance_v2.terraform.id}"
network_id = "${openstack_networking_network_v2.terraform2.id}"
}
provisioner "file" {
source = "script.sh"
destination = "/tmp/script.sh"
}
provisioner "remote-exec" {
inline = [
"chmod +x /tmp/script.sh",
"/tmp/script.sh args",
]
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment