resource "null_resource" "mitchty_net_nginx" { depends_on = [ null_resource.nginx_install, ] connection { host = linode_instance.prod.ip_address user = "root" private_key = file("~/.ssh/id_rsa") } provisioner "file" { source = "https-mitchty.net.conf" destination = "/tmp/https-mitchty.net.conf" } provisioner "remote-exec" { inline = [<