2019-05-01 21:11:23 +00:00
|
|
|
---
|
2020-09-01 15:14:13 +00:00
|
|
|
layout: commands
|
2020-04-07 18:55:19 +00:00
|
|
|
page_title: 'Commands: Logout'
|
2020-04-13 18:40:26 +00:00
|
|
|
sidebar_title: logout
|
2019-05-01 21:11:23 +00:00
|
|
|
description: >
|
2020-04-07 18:55:19 +00:00
|
|
|
The `logout` command will destroy the provided token if it was created from
|
|
|
|
`consul login`.
|
2019-05-01 21:11:23 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
# Consul Logout
|
|
|
|
|
|
|
|
Command: `consul logout`
|
|
|
|
|
|
|
|
The `logout` command will destroy the provided token if it was created from
|
|
|
|
`consul login`.
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
Usage: `consul logout [options]`
|
|
|
|
|
|
|
|
-> The token to delete should be specified with the `-token` argument, the
|
|
|
|
`CONSUL_HTTP_TOKEN` environment variable, the `-token-file` argument, or the
|
|
|
|
`CONSUL_HTTP_TOKEN_FILE` environment variable.
|
|
|
|
|
|
|
|
#### API Options
|
|
|
|
|
2020-04-07 18:55:19 +00:00
|
|
|
@include 'http_api_options_client.mdx'
|
2019-05-01 21:11:23 +00:00
|
|
|
|
|
|
|
### Examples
|
|
|
|
|
|
|
|
Logout and delete a login token.
|
|
|
|
|
2020-05-19 18:32:38 +00:00
|
|
|
```shell-session
|
2019-05-01 21:11:23 +00:00
|
|
|
$ consul logout -token-file 'consul.token'
|
|
|
|
```
|