open-consul/website/content/commands/intention/get.mdx

67 lines
2.1 KiB
Plaintext

---
layout: commands
page_title: 'Commands: Intention Get'
description: >-
The `consul intention get` command returns information about a single L4 service intention that authorizes services to communicate. It was deprecated in Consul v1.9.0; use `consul config` instead.
---
# Consul Intention Get
Command: `consul intention get`
Corresponding HTTP API Endpoints: [\[GET\] /v1/connect/intentions/exact](/consul/api-docs/connect/intentions#read-specific-intention-by-name), [\[GET\] /v1/connect/intentions/:uuid](/consul/api-docs/connect/intentions#read-specific-intention-by-id)
The `intention get` command shows a single intention.
-> **Deprecated** - The one argument form of this command is deprecated in
Consul 1.9.0. Intentions no longer need IDs when represented as
[`service-intentions`](/consul/docs/connect/config-entries/service-intentions) config
entries.
The table below shows this command's [required ACLs](/consul/api-docs/api-structure#authentication). Configuration of
[blocking queries](/consul/api-docs/features/blocking) and [agent caching](/consul/api-docs/features/caching)
are not supported from commands, but may be from the corresponding HTTP endpoint.
| ACL Required |
| ----------------------------- |
| `intentions:read`<sup>1</sup> |
<p>
<sup>1</sup> Intention ACL rules are specified as part of a{' '}
<code>service</code> rule. See{' '}
<a href="/docs/connect/intentions#intention-management-permissions">
Intention Management Permissions
</a>{' '}
for more details.
</p>
## Usage
Usage:
- `consul intention get [options] SRC DST`
- `consul intention get [options] ID`
`SRC` and `DST` can both take [several forms](/consul/commands/intention#source-and-destination-naming).
#### Enterprise Options
@include 'http_api_partition_options.mdx'
@include 'http_api_namespace_options.mdx'
#### API Options
@include 'http_api_options_client.mdx'
## Examples
```shell-session
$ consul intention get web db
Source: web
Destination: db
Action: deny
ID: 20edfa56-9cd4-51db-8c22-db09fdec61ef
Created At: Thursday, 24-May-18 17:07:49 PDT
```