mirror of
https://github.com/status-im/consul.git
synced 2025-01-11 22:34:55 +00:00
a9df6ac50b
- moved and renamed files/folders based on new structure - updated docs navigation based on new structure - moved CLI to top nav (created commands.jsx and commands-navigation.js) - updated and added redirects - updating to be consistent with standalone categories - changing "overview" link in top nav to lead to where intro was moved (docs/intro) - adding redirects for intro content - deleting old intro folders - format all data/navigation files - deleting old commands folder - reverting changes to glossary page - adjust intro navigation for removal of 'vs' paths - add helm page redirect - fix more redirects - add a missing redirect - fix broken anchor links and formatting mistakes - deleted duplicate section, added redirect, changed link - removed duplicate glossary page
54 lines
1.1 KiB
Plaintext
54 lines
1.1 KiB
Plaintext
---
|
|
layout: commands
|
|
page_title: 'Commands: TLS'
|
|
sidebar_title: tls
|
|
---
|
|
|
|
# Consul TLS
|
|
|
|
Command: `consul tls`
|
|
|
|
The `tls` command is used to help with setting up a CA and certificates for Consul TLS.
|
|
|
|
## Basic Examples
|
|
|
|
Create a CA:
|
|
|
|
```shell-session
|
|
$ consul tls ca create
|
|
==> Saved consul-agent-ca.pem
|
|
==> Saved consul-agent-ca-key.pem
|
|
```
|
|
|
|
Create a client certificate:
|
|
|
|
```shell-session
|
|
$ consul tls cert create -client
|
|
==> Using consul-agent-ca.pem and consul-agent-ca-key.pem
|
|
==> Saved dc1-client-consul-0.pem
|
|
==> Saved dc1-client-consul-0-key.pem
|
|
```
|
|
|
|
For more examples, ask for subcommand help or view the subcommand documentation
|
|
by clicking on one of the links in the sidebar.
|
|
|
|
## Usage
|
|
|
|
Usage: `consul tls <subcommand> <subcommand> [options]`
|
|
|
|
For the exact documentation for your Consul version, run `consul tls -h` to
|
|
view the complete list of subcommands.
|
|
|
|
```text
|
|
Usage: consul tls <subcommand> <subcommand> [options]
|
|
|
|
# ...
|
|
|
|
Subcommands:
|
|
ca Helpers for CAs
|
|
cert Helpers for certificates
|
|
```
|
|
|
|
For more information, examples, and usage about a subcommand, click on the name
|
|
of the subcommand in the sidebar or one of the links below:
|