Automation and setup for sites I own.
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 

23 righe
562 B

  1. resource "null_resource" "mitchty_net_nginx" {
  2. depends_on = [
  3. null_resource.nginx_install,
  4. ]
  5. connection {
  6. host = linode_instance.prod.ip_address
  7. user = "root"
  8. private_key = file("~/.ssh/id_rsa")
  9. }
  10. provisioner "file" {
  11. source = "https-mitchty.net.conf"
  12. destination = "/tmp/https-mitchty.net.conf"
  13. }
  14. provisioner "remote-exec" {
  15. inline = [<<FIN
  16. install -m644 /tmp/https-mitchty.net.conf /etc/nginx/conf.d/https-mitchty.net.conf
  17. rm -fr /tmp/https-mitchty.net.conf
  18. rc-service nginx restart
  19. FIN
  20. ]
  21. }
  22. }