Provisioners

Provisioners in Terraform are configuration blocks available for several resources that allow you to perform some actions after the resource was created. It is mostly useful for servers, such as EC2 instances. Provisioners can be used to bootstrap the instance, to connect it to a cluster or to run tests, as we did manually in the previous section. There are following four types of provisioners:

  • local-exec
  • remote-exec
  • file
  • chef

Each of them has its own applications and is useful for solving one issue or another. Let's take local-exec first and see how it can help in building inventory files for Ansible.

Provisioning with local-exec and Ansible

Ansible is one of the newest and hottest open source configuration management tools. It has become ...

Get Getting Started with Terraform now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.