No description
  • Go 98.3%
  • HCL 0.7%
  • Shell 0.4%
  • Dockerfile 0.3%
  • Makefile 0.3%
Find a file
Paras Gupta 1abc958f5d
Post release activity, merging 0.9.0 release changes to main branch.
Merge release/0.9.x branch changes to main branch
2026-02-10 20:33:19 +05:30
.changelog Renaming changelog file 2026-01-30 12:55:31 +05:30
.github Updating go version in workflow files 2026-01-30 14:58:49 +05:30
.release Preparing release branch 2026-01-30 14:53:00 +05:30
api Merge branch 'main' into compliance/update-headers-batch-1 2026-01-30 11:39:32 +05:30
build-scripts [COMPLIANCE] Update Copyright and License Headers (Batch 1 of 2) 2025-12-08 16:54:28 +00:00
client Merge branch 'main' into compliance/update-headers-batch-1 2026-01-30 11:39:32 +05:30
command Merge branch 'main' into compliance/update-headers-batch-1 2026-01-30 11:39:32 +05:30
config [COMPLIANCE] Update Copyright and License Headers (Batch 1 of 2) 2025-12-08 16:54:28 +00:00
controller Merge branch 'main' into compliance/update-headers-batch-1 2026-01-30 11:39:32 +05:30
docker [COMPLIANCE] Update Copyright and License Headers (Batch 1 of 2) 2025-12-08 16:54:28 +00:00
driver [COMPLIANCE] Update Copyright and License Headers (Batch 1 of 2) 2025-12-08 16:54:28 +00:00
e2e Merge branch 'main' into compliance/update-headers-batch-1 2026-01-30 11:39:32 +05:30
examples Merge branch 'main' into compliance/update-headers-batch-1 2026-01-30 11:39:32 +05:30
handler [COMPLIANCE] Update Copyright and License Headers (Batch 1 of 2) 2025-12-08 16:54:28 +00:00
health [COMPLIANCE] Update Copyright and License Headers (Batch 1 of 2) 2025-12-08 16:54:28 +00:00
internal [COMPLIANCE] Update Copyright and License Headers (Batch 1 of 2) 2025-12-08 16:54:28 +00:00
logging [COMPLIANCE] Update Copyright and License Headers (Batch 1 of 2) 2025-12-08 16:54:28 +00:00
mocks upgraded the oapi-codegen library and fixe tests 2025-04-10 19:58:26 +05:30
registration [COMPLIANCE] Update Copyright and License Headers (Batch 1 of 2) 2025-12-08 16:54:28 +00:00
retry [COMPLIANCE] Update Copyright and License Headers (Batch 1 of 2) 2025-12-08 16:54:28 +00:00
state [COMPLIANCE] Update Copyright and License Headers (Batch 1 of 2) 2025-12-08 16:54:28 +00:00
templates Merge branch 'main' into compliance/update-headers-batch-2 2026-01-30 12:39:22 +05:30
testutils Merge branch 'main' into compliance/update-headers-batch-2 2026-01-30 11:40:04 +05:30
version Preparing release branch 2026-01-30 14:53:00 +05:30
.copywrite.hcl removed template copyright headers 2023-04-17 09:10:55 -04:00
.gitignore git ignore vscode log files 2022-08-02 15:06:47 -07:00
CHANGELOG.md Fix GO-2026-4316 vulnerability 2026-01-30 20:30:28 +05:30
CONTRIBUTING.md Update references to master branch to main 2021-09-30 16:00:11 -05:00
Dockerfile [COMPLIANCE] Update Copyright and License Headers (Batch 1 of 2) 2025-12-08 16:54:28 +00:00
go.mod Fix GO-2026-4316 vulnerability 2026-01-30 20:30:28 +05:30
go.sum Fix GO-2026-4316 vulnerability 2026-01-30 20:30:28 +05:30
LICENSE [COMPLIANCE] Update Copyright and License Headers (Batch 1 of 2) 2025-12-08 16:54:28 +00:00
main.go [COMPLIANCE] Update Copyright and License Headers (Batch 1 of 2) 2025-12-08 16:54:28 +00:00
Makefile Force parallel e2e test execution. 2022-07-28 12:38:06 -05:00
README.md Revert "Small change in README to trigger all checks again on GH" 2022-06-29 16:52:30 -05:00

Consul-Terraform-Sync Build Status CI

We're looking for feedback on how our users interact with Consul-Terraform-Sync (CTS), please fill out our brief survey!

Overview

Consul-Terraform-Sync (CTS) is a service-oriented tool for managing network infrastructure near real-time. CTS runs as a daemon and integrates the network topology maintained by your Consul cluster with your network infrastructure to dynamically secure and connect services.

Community Support

If you have questions about how consul-terraform-sync works, its capabilities or anything other than a bug or feature request (use GitHub's issue tracker for those), please see our community support resources.

Community portal: discuss.hashicorp.com

Other resources: consul.io/community

Additionally, for issues and pull requests, we'll be using the 👍 reactions as a rough voting system to help gauge community priorities. So please add 👍 to any issue or pull request you'd like to see worked on. Thanks.

Roadmap

Knowing about our upcoming features and priorities helps our users plan. This repository contains information about what we are working on and allows all our user to give direct feedback. Please visit the Roadmap FAQs for more information on the categorization of the roadmap.

See the roadmap »

Installation

CTS is a daemon that runs alongside Consul, similar to other Consul ecosystem tools like Consul Template. CTS is not included with the Consul binary and will need to be installed separately.

Download

To install CTS, 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. Download a pre-compiled, released version from the CTS release page.
  2. Extract the binary using unzip or tar.
  3. Move the binary into $PATH.
$ wget https://releases.hashicorp.com/consul-terraform-sync/${VERSION}/consul-terraform-sync_${VERSION}_${OS}_${ARCH}.zip
$ unzip consul-terraform-sync_${VERSION}_${OS}_${ARCH}.zip
$ mv consul-terraform-sync /usr/local/bin/consul-terraform-sync

Build from Source

You can also build CTS from source.

  1. Clone the repository to your local machine.
  2. Pick a version or build from main.
  3. Build CTS using the Makefile.
  4. The consul-terraform-sync binary is now installed to $GOPATH/bin.
$ git clone https://github.com/hashicorp/consul-terraform-sync.git
$ cd consul-terraform-sync
$ git fetch --all
$ git checkout tags/vX.Y.Z
$ make dev
$ which consul-terraform-sync

Verify

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

$ consul-terraform-sync -h
Usage CLI: consul-terraform-sync <command> [-help] [options]

Commands:
    start
     task

Options:
    -autocomplete-install [Default: false]
        Install the autocomplete

    -autocomplete-uninstall [Default: false]
        Uninstall the autocomplete

    -config-dir
        A directory to load files for configuring Consul-Terraform-Sync.
        Configuration files require an .hcl or .json file extension in order
        to specify their format. This option can be specified multiple times to
        load different directories.

    -config-file
        A file to load for configuring Consul-Terraform-Sync. Configuration
        file requires an .hcl or .json extension in order to specify their format.
        This option can be specified multiple times to load different
        configuration files.

    -inspect [Default: false]
        Run Consul-Terraform-Sync in Inspect mode to print the proposed state
        changes for all tasks, and then exit. No changes are applied
        in this mode.

    -inspect-task
        Run Consul-Terraform-Sync in Inspect mode to print the proposed
        state changes for the task, and then exit. No changes are applied
        in this mode.

    -once [Default: false]
        Render templates and run tasks once. Does not run the process
        as a daemon and disables buffer periods.

Configuration

Documentation to configure CTS

Roadmap FAQs

Why did you build this public facing roadmap?

We know that our customers are making decisions and plans based on what we are developing, and we want to provide our customers the insights they need to plan.

Why does your roadmap not have specific dates?

Because the highest priority for us to put out a secure and operationally stable product, we can't provide specific target dates for features. The roadmap is subject to change at any time, and roadmap issues in this repository do not guarantee a feature will be launched as proposed.

What are the roadmap categories?

  • Recently Shipped - These are the features, enhancements or bug fixes that we recently delivered.
  • Up Next - Features, enhancements or bug fixes coming in the next couple of months.
  • Researching - This might mean that we are still designing and thinking through how this feature or enhancement might work. We would love to hear from you on how you would like to see something implemented. Additionally, we would like to hear your use case or design ideas here.

How can I request a feature be added to the roadmap?

Please open an issue! Guidelines on how to contribute can be found here. Community submitted issues will be tagged "Enhancement" and will be reviewed by the team.

Will you accept a pull request?

We want to create a strong community around CTS. We will take all PRs very seriously and review for inclusion. Please read about contributing.