No description
  • HCL 54.3%
  • Shell 45.7%
Find a file
oss-core-libraries-dashboard[bot] 0339b8e14f
[COMPLIANCE] Update Copyright and License Headers (#45)
Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
2026-02-20 15:29:47 +05:30
_docs cleanup 2017-09-18 22:52:22 -05:00
examples [COMPLIANCE] Update Copyright and License Headers (#45) 2026-02-20 15:29:47 +05:30
modules [COMPLIANCE] Update Copyright and License Headers (#45) 2026-02-20 15:29:47 +05:30
.gitignore initial commit for azure 2017-08-14 15:09:03 -04:00
CODEOWNERS Add @anouarchattouna to CODEOWNERS 2021-12-08 09:03:00 +01:00
custom-data-client.sh [COMPLIANCE] Update Copyright and License Headers (#45) 2026-02-20 15:29:47 +05:30
custom-data-server.sh [COMPLIANCE] Update Copyright and License Headers (#45) 2026-02-20 15:29:47 +05:30
LICENSE [COMPLIANCE] Update Copyright and License Headers (#45) 2026-02-20 15:29:47 +05:30
MAIN.md Fix architecture image link 2018-02-22 13:47:31 -06:00
main.tf [COMPLIANCE] Update Copyright and License Headers (#45) 2026-02-20 15:29:47 +05:30
NOTICE Globally replace consul-azure to azurerm-consul 2017-10-26 19:40:20 +01:00
outputs.tf [COMPLIANCE] Update Copyright and License Headers (#45) 2026-02-20 15:29:47 +05:30
README.md Update README.md 2022-03-23 15:00:10 +00:00
vars.tf [COMPLIANCE] Update Copyright and License Headers (#45) 2026-02-20 15:29:47 +05:30

DISCLAIMER: This is no longer supported.

Moving forward in the future this repository will be no longer supported and eventually lead to deprecation. Please use our latest versions of our products moving forward or alternatively you may fork the repository to continue use and development for your personal/business use.


Consul Azure Module

This repo contains a Module for deploying a Consul cluster on Azure using Terraform. Consul is a distributed, highly-available tool that you can use for service discovery and key/value storage. A Consul cluster typically includes a small number of server nodes, which are responsible for being part of the consensus quorum, and a larger number of client nodes, which you typically run alongside your apps:

Consul architecture

How to use this Module

Each Module has the following folder structure:

  • root: This folder shows an example of Terraform code that uses the consul-cluster module to deploy a Consul cluster in Azure
  • modules: This folder contains the reusable code for this Module, broken down into one or more modules.
  • examples: This folder contains examples of how to use the modules.

To deploy Consul servers using this Module:

  1. Create a Consul Image using a Packer template that references the install-consul module. Here is an example Packer template.

  2. Deploy that Image in a Scale Set using the Terraform consul-cluster module and execute the run-consul script with the --server flag during boot on each Instance in the Scale Set to form the Consul cluster. Here in the root is an example Terraform configuration to provision a Consul cluster.

To deploy Consul clients using this Module:

  1. Use the install-consul module to install Consul alongside your application code.
  2. Before booting your app, execute the run-consul script with --client flag.
  3. Your app can now using the local Consul agent for service discovery and key/value storage.
  4. Optionally, you can use the install-dnsmasq module to configure Consul as the DNS for a specific domain (e.g. .consul) so that URLs such as foo.service.consul resolve automatically to the IP address(es) for a service foo registered in Consul (all other domain names will be continue to resolve using the default resolver on the OS).

What's a Module?

A Module is a canonical, reusable, best-practices definition for how to run a single piece of infrastructure, such as a database or server cluster. Each Module is created using Terraform, and includes automated tests, examples, and documentation. It is maintained both by the open source community and companies that provide commercial support.

Instead of figuring out the details of how to run a piece of infrastructure from scratch, you can reuse existing code that has been proven in production. And instead of maintaining all that infrastructure code yourself, you can leverage the work of the Module community to pick up infrastructure improvements through a version number bump.

Who created this Module?

These modules were created by Gruntwork, in partnership with HashiCorp, in 2017 and maintained through 2021. They were deprecated in 2022 in favor of newer alternatives (see the top of the README for details).

Code included in this Module:

  • install-consul: This module installs Consul using a Packer template to create a Consul Azure Image.

  • consul-cluster: The module includes Terraform code to deploy a Consul Image in a Virtual Machine Scale Set.

  • run-consul: This module includes the scripts to configure and run Consul. It is used by the above Packer module at build-time to set configurations, and by the Terraform module at runtime with Custom Data to create the cluster.

  • install-dnsmasq module: Install Dnsmasq and configure it to forward requests for a specific domain to Consul. This allows you to use Consul as a DNS server for URLs such as foo.service.consul.

  • consul-security-group-rules: Defines the security group rules used by a Consul cluster to control the traffic that is allowed to go in and out of the cluster.

How is this Module versioned?

This Module follows the principles of Semantic Versioning. You can find each new release, along with the changelog, in the Releases Page.

During initial development, the major version will be 0 (e.g., 0.x.y), which indicates the code does not yet have a stable API. Once we hit 1.0.0, we will make every effort to maintain a backwards compatible API and use the MAJOR, MINOR, and PATCH versions on each release to indicate any incompatibilities.

License

This code is released under the Apache 2.0 License. Please see LICENSE and NOTICE for more details.