resource "null_resource" "mitchty_com_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.com.conf" destination = "/tmp/https-mitchty.com.conf" } provisioner "remote-exec" { inline = [<