Difference between revisions of "Terraform provisioner"

From wikieduonline
Jump to navigation Jump to search
Line 14: Line 14:
 
  }
 
  }
  
== DO Example ==
+
== Digital Ocean Example ==
 
* https://www.digitalocean.com/community/tutorials/how-to-use-ansible-with-terraform-for-configuration-management
 
* https://www.digitalocean.com/community/tutorials/how-to-use-ansible-with-terraform-for-configuration-management
  
Line 31: Line 31:
 
     command = "[[ANSIBLE_HOST_KEY_CHECKING]]=False ansible-playbook -u root -i '${self.ipv4_address},' --private-key ${var.pvt_key} -e 'pub_key=${var.pub_key}' apache-install.yml"
 
     command = "[[ANSIBLE_HOST_KEY_CHECKING]]=False ansible-playbook -u root -i '${self.ipv4_address},' --private-key ${var.pvt_key} -e 'pub_key=${var.pub_key}' apache-install.yml"
 
   }
 
   }
 
  
 
== Related ==
 
== Related ==

Revision as of 23:00, 26 February 2022

Provisioners are a Last Resort. [1]


Example

resource "aws_instance" "your_web" {
  # ...

  provisioner "local-exec" {
    command = "echo The server's IP address is ${self.private_ip}"
  }
}

Digital Ocean Example

 provisioner "remote-exec" {
   inline = ["sudo apt update", "sudo apt install python3 -y", "echo Done!"]
   connection {
     host        = self.ipv4_address
     type        = "ssh"
     user        = "root"
     private_key = file(var.pvt_key)
   }
 }

 provisioner "local-exec" {
   command = "ANSIBLE_HOST_KEY_CHECKING=False ansible-playbook -u root -i '${self.ipv4_address},' --private-key ${var.pvt_key} -e 'pub_key=${var.pub_key}' apache-install.yml"
 }

Related

See also

  • https://www.terraform.io/language/resources/provisioners/syntax
  • Advertising: