Configure Consul-Terraform-Sync

The page will cover the main components for configuring your Network Infrastructure Automation with Consul at a high level. For the full list of configuration options, visit the Consul-Terraform-Sync (CTS) configuration page.

Tasks

A task captures a network automation process by defining which network resources to update on a given condition. Configure CTS with one or more tasks that contain a list of Consul services, a Terraform module, and various Terraform providers.

Within the task block, the list of services for a task represents the service layer that drives network automation. The module is the discovery location of the Terraform module that defines the network automation process for the task. The condition, not shown below, defaults to the services condition when unconfigured such that network resources are updated on changes to the list of services over time.

Review the Terraform module to be used for network automation and identify the Terraform providers required by the module. If the module depends on a set of providers, include the list of provider names in the providers field to associate the corresponding provider configuration with the task. These providers will need to be configured later in a separate block.

  1. task {
  2. name = "website-x"
  3. description = "automate services for website-x"
  4. module = "namespace/example/module"
  5. version = "1.0.0"
  6. providers = ["myprovider"]
  7. condition "services" {
  8. names = ["web", "api"]
  9. }
  10. }

Terraform Providers

Configuring Terraform providers within CTS requires 2 config components. The first component is required within the driver.terraform block. All providers configured for CTS must be listed within the required_providers stanza to satisfy a Terraform v0.13+ requirement for Terraform to discover and install them. The providers listed are later organized by CTS to be included in the appropriate Terraform configuration files for each task.

  1. driver "terraform" {
  2. required_providers {
  3. myprovider = {
  4. source = "namespace/myprovider"
  5. version = "1.3.0"
  6. }
  7. }
  8. }

The second component for configuring a provider is the terraform_provider block. This block resembles provider blocks for Terraform configuration and has the same responsibility for understanding API interactions and exposing resources for a specific infrastructure platform.

Terraform modules configured for task automation may require configuring the referenced providers. For example, configuring the host address and authentication to interface with your network infrastructure. Refer to the Terraform provider documentation hosted on the Terraform Registry to find available options. The terraform_provider block is loaded by CTS during runtime and processed to be included in autogenerated Terraform configuration files used for task automation. Omitting the terraform_provider block for a provider will defer to the Terraform behavior assuming an empty default configuration.

  1. terraform_provider "myprovider" {
  2. address = "myprovider.example.com"
  3. }

Summary

Piecing it all together, the configuration file for CTS will have several HCL blocks in addition to other options for configuring the CTS daemon: task, driver.terraform, and terraform_provider blocks.

An example HCL configuration file is shown below to automate one task to execute a Terraform module on the condition when there are changes to two services.

Configuration - 图1

cts-example-config.hcl

  1. log_level = "info"
  2. syslog {
  3. enabled = true
  4. }
  5. consul {
  6. address = "consul.example.com"
  7. }
  8. task {
  9. name = "website-x"
  10. description = "automate services for website-x"
  11. module = "namespace/example/module"
  12. version = "1.0.0"
  13. providers = ["myprovider"]
  14. condition "services" {
  15. names = ["web", "api"]
  16. }
  17. buffer_period {
  18. min = "10s"
  19. }
  20. }
  21. driver "terraform" {
  22. log = true
  23. required_providers {
  24. myprovider = {
  25. source = "namespace/myprovider"
  26. version = "1.3.0"
  27. }
  28. }
  29. }
  30. terraform_provider "myprovider" {
  31. address = "myprovider.example.com"
  32. }