DEV Community

Rahul Wagh
Rahul Wagh

Posted on

What are terraform Provisioners?

Terraform provisioners are of three types -

  1. file
  2. local-exec
  3. remote-exec

1.File provisioner - The file provisioner will help you to copy the file securely from the local machine or development machine to the remote Ec2 instance.

  1. Local provisioner - The local-exec provisioner invokes a local executable after a resource is created. This invokes a process on the machine running Terraform, not on the resource. It will help you to run the shell command onto your local machine instead of the remote EC2 instance. The local provisioners are

  2. Remote provisioner - The remote-exec provisioner invokes a script on a remote resource after it is created. This can be used to run a configuration management tool, bootstrap into a cluster, etc. It will help you to run the shell command onto the remote Ec2 instance of AWS or virtual machine of Google Cloud

▬▬▬▬▬▬ * Instruction's Guides * ▬▬▬▬▬▬

  1. Terraform provisioners - https://jhooq.com/terraform-provisioner/
  2. SSH into terrafrom AWS EC2 instance - https://jhooq.com/terraform-ssh-into-aws-ec2/

Latest comments (0)