Install Consul-Terraform-Sync

Installing Consul-Terraform-Sync

To install Consul-Terraform-Sync, find the appropriate package for your system and download it as a zip archive. Unzip the package to extract the binary named consul-terraform-sync. Move the consul-terraform-sync binary to a location available on your PATH.

  1. $ mv ~/Downloads/consul-terraform-sync /usr/local/bin/consul-terraform-sync

You can also install Consul-Terraform-Sync as a Docker container or build the binary from source.

Once installed, verify the installation works by prompting the help option.

  1. $ consul-terraform-sync -h
  2. Usage of consul-terraform-sync:
  3. -config-dir value
  4. A directory to load files for configuring Sync. Configuration files
  5. require an .hcl or .json file extention in order to specify their format.
  6. This option can be specified multiple times to load different directories.
  7. -config-file value
  8. A file to load for configuring Sync. Configuration file requires an
  9. .hcl or .json extension in order to specify their format. This option can
  10. be specified multiple times to load different configuration files.
  11. -once
  12. Render templates and run tasks once. Does not run the process as a daemon
  13. and disables wait timers.
  14. -version
  15. Print the version of this daemon.

Connect your Consul Cluster

Consul-Terraform-Sync connects with your Consul cluster in order to monitor the Consul catalog for service changes. These service changes lead to downstream updates to your network devices. You can configure your Consul cluster in Consul-Terraform-Sync with the Consul block. Below is an example:

  1. consul {
  2. address = "localhost:8500"
  3. token = "my-consul-acl-token"
  4. }

Connect your Network Device

Consul-Terraform-Sync interacts with your network device through a network driver. For the Terraform network driver, Consul-Terraform-Sync uses Terraform providers to make changes to your network infrastructure resources. You can reference existing provider docs on the Terraform Registry to configure each provider or create a new Terraform provider.

Once you have identified a Terraform provider for all of your network devices, you can configure them in Consul-Terraform-Sync with a provider block for each network device. Below is an example:

  1. provider "fake-firewall" {
  2. address = "10.10.10.10"
  3. username = "admin"
  4. password = "password123"
  5. }

This provider is then used by task(s) to execute a Terraform module that will update the related network device.

Multiple Instances per Provider

You might have multiple instances of the same type of network device; for example, multiple instances of a firewall or load balancer. You can configure each instance with its own provider block and distinguish it by the alias meta-argument. See multiple provider configurations for more details and an example of the configuration.