2018-05-29 21:07:40 +00:00
---
2020-04-07 18:55:19 +00:00
layout: docs
page_title: Connect - Configuration
description: >-
A Connect-aware proxy enables unmodified applications to use Connect. A
per-service proxy sidecar transparently handles inbound and outbound service
connections, automatically wrapping and verifying TLS connections.
2018-05-29 21:07:40 +00:00
---
2022-04-25 17:04:06 +00:00
# Service Mesh Configuration
2018-05-29 21:07:40 +00:00
2022-04-25 17:04:06 +00:00
There are many configuration options exposed for Consul service mesh. The only option
2022-04-26 20:12:53 +00:00
that must be set is the `connect.enabled` option on Consul servers to enable Consul service mesh.
2018-05-29 21:07:40 +00:00
All other configurations are optional and have reasonable defaults.
2022-04-26 20:12:53 +00:00
Consul Connect is the component shipped with Consul that enables service mesh functionality. The terms _Consul Connect_ and _Consul service mesh_ are used interchangeably throughout this documentation.
2022-04-25 17:04:06 +00:00
-> **Tip:** Service mesh is enabled by default when running Consul in
2019-06-14 05:52:50 +00:00
dev mode with `consul agent -dev`.
## Agent Configuration
2018-05-29 21:07:40 +00:00
2022-04-26 20:12:53 +00:00
Begin by enabling Connect for your Consul
2018-05-29 21:07:40 +00:00
cluster. By default, Connect is disabled. Enabling Connect requires changing
the configuration of only your Consul _servers_ (not client agents). To enable
Connect, add the following to a new or existing
2022-01-11 01:30:50 +00:00
[server configuration file](/docs/agent/config/config-files). In an existing cluster, this configuration change requires a Consul server restart, which you can perform one server at a time to maintain availability. In HCL:
2018-05-29 21:07:40 +00:00
2022-04-25 17:04:06 +00:00
<CodeTabs heading="Enable Consul service mesh" tabs={[ "HCL", "JSON" ]}>
2018-05-29 21:07:40 +00:00
```hcl
connect {
enabled = true
}
```
2022-04-25 17:04:06 +00:00
```json
"connect": {
"enabled": true
}
```
</CodeTabs>
2018-05-29 21:07:40 +00:00
This will enable Connect and configure your Consul cluster to use the
built-in certificate authority for creating and managing certificates.
You may also configure Consul to use an external
2020-04-09 23:46:54 +00:00
[certificate management system](/docs/connect/ca), such as
2018-05-29 21:07:40 +00:00
[Vault](https://vaultproject.io).
2019-06-14 05:52:50 +00:00
Services and proxies may always register with Connect settings, but they will
fail to retrieve or verify any TLS certificates. This causes all Connect-based
2018-05-29 21:07:40 +00:00
connection attempts to fail until Connect is enabled on the server agents.
2019-06-14 05:52:50 +00:00
Other optional Connect configurations that you can set in the server
configuration file include:
2022-01-11 01:30:50 +00:00
- [certificate authority settings](/docs/agent/config/config-files#connect)
- [token replication](/docs/agent/config/config-files#acl_tokens_replication)
- [dev mode](/docs/agent/config/cli-flags#_dev)
- [server host name verification](/docs/agent/config/config-files#tls_internal_rpc_verify_server_hostname)
2018-06-22 23:25:27 +00:00
2019-06-14 05:52:50 +00:00
If you would like to use Envoy as your Connect proxy you will need to [enable
2022-01-11 01:30:50 +00:00
gRPC](/docs/agent/config/config-files#grpc_port).
2019-06-14 05:52:50 +00:00
Additionally if you plan on using the observability features of Connect, it can
be convenient to configure your proxies and services using [configuration
2020-10-14 15:23:05 +00:00
entries](/docs/agent/config-entries) which you can interact with using the
2019-06-14 05:52:50 +00:00
CLI or API, or by creating configuration entry files. You will want to enable
[centralized service
2022-01-11 01:30:50 +00:00
configuration](/docs/agent/config/config-files#enable_central_service_config) on
2019-06-14 05:52:50 +00:00
clients, which allows each service's proxy configuration to be managed centrally
via API.
!> **Security note:** Enabling Connect is enough to try the feature but doesn't
2018-06-22 23:38:28 +00:00
automatically ensure complete security. Please read the [Connect production
2020-08-17 16:19:04 +00:00
tutorial](https://learn.hashicorp.com/tutorials/consul/service-mesh-production-checklist) to understand the additional steps
2018-06-22 23:38:28 +00:00
needed for a secure deployment.
2019-06-14 05:52:50 +00:00
## Centralized Proxy and Service Configuration
To account for common Connect use cases where you have many instances of the
same service, and many colocated sidecar proxies, Consul allows you to customize
the settings for all of your proxies or all the instances of a given service at
2020-10-14 15:23:05 +00:00
once using [Configuration Entries](/docs/agent/config-entries).
2019-06-14 05:52:50 +00:00
You can override centralized configurations for individual proxy instances in
their
2020-04-09 23:46:54 +00:00
[sidecar service definitions](/docs/connect/registration/sidecar-service),
2019-06-14 05:52:50 +00:00
and the default protocols for service instances in their [service
2022-01-10 23:36:16 +00:00
registrations](/docs/discovery/services).
2019-06-14 05:52:50 +00:00
## Schedulers
Consul Connect is especially useful if you are using an orchestrator like Nomad
or Kubernetes, because these orchestrators can deploy thousands of service instances
which frequently move hosts. Sidecars for each service can be configured through
these schedulers, and in some cases they can automate Consul configuration,
sidecar deployment, and service registration.
### Nomad
Connect can be used with Nomad to provide secure service-to-service
communication between Nomad jobs and task groups. The ability to use the dynamic
port feature of Nomad makes Connect particularly easy to use. Learn about how to
configure Connect on Nomad by reading the
2022-01-10 23:36:16 +00:00
[integration documentation](/docs/connect/nomad)
2019-06-14 05:52:50 +00:00
### Kubernetes
2018-06-22 23:25:27 +00:00
2019-06-14 05:52:50 +00:00
The Consul Helm chart can automate much of Consul Connect's configuration, and
makes it easy to automatically inject Envoy sidecars into new pods when they are
2020-04-09 23:46:54 +00:00
deployed. Learn about the [Helm chart](/docs/platform/k8s/helm) in general,
2020-10-14 15:23:05 +00:00
or if you are already familiar with it, check out its
2020-08-18 22:22:29 +00:00
[connect specific configurations](/docs/platform/k8s/connect).