2018-05-29 14:07:40 -07:00
|
|
|
---
|
2020-09-01 10:14:13 -05:00
|
|
|
layout: commands
|
2020-04-07 14:55:19 -04:00
|
|
|
page_title: 'Commands: Intention Match'
|
2018-05-29 14:07:40 -07:00
|
|
|
---
|
|
|
|
|
|
|
|
# Consul Intention Match
|
|
|
|
|
|
|
|
Command: `consul intention match`
|
|
|
|
|
2022-01-11 08:26:58 -05:00
|
|
|
Corresponding HTTP API Endpoint: [\[GET\] /v1/connect/intentions/match](/api-docs/connect/intentions#list-matching-intentions)
|
2022-01-10 12:40:11 -05:00
|
|
|
|
2018-05-29 14:07:40 -07:00
|
|
|
The `intention match` command shows the list of intentions that match
|
|
|
|
a given source or destination. The list of intentions is listed in evaluation
|
|
|
|
order: the first intention that matches a request would be evaluated.
|
|
|
|
|
2020-10-14 10:23:05 -05:00
|
|
|
The [check](/commands/intention/check) command can be used to
|
|
|
|
check whether an L4 connection would be authorized between any two services.
|
2018-05-29 14:07:40 -07:00
|
|
|
|
2022-01-10 16:44:56 -05:00
|
|
|
The table below shows this command's [required ACLs](/api#authentication). Configuration of
|
2022-03-30 16:16:26 -05:00
|
|
|
[blocking queries](/api-docs/features/blocking) and [agent caching](/api-docs/features/caching)
|
2022-01-10 16:44:56 -05:00
|
|
|
are not supported from commands, but may be from the corresponding HTTP endpoint.
|
|
|
|
|
2022-01-11 09:41:54 -05:00
|
|
|
| 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>
|
2022-01-10 16:44:56 -05:00
|
|
|
|
2018-05-29 14:07:40 -07:00
|
|
|
## Usage
|
|
|
|
|
|
|
|
Usage: `consul intention match [options] SRC_OR_DST`
|
|
|
|
|
2020-10-14 10:23:05 -05:00
|
|
|
`SRC` and `DST` can both take [several forms](/commands/intention#source-and-destination-naming).
|
2020-06-26 16:59:15 -05:00
|
|
|
|
2018-05-29 14:07:40 -07:00
|
|
|
#### API Options
|
|
|
|
|
2020-04-07 14:55:19 -04:00
|
|
|
@include 'http_api_options_client.mdx'
|
2018-05-29 14:07:40 -07:00
|
|
|
|
2020-06-26 16:59:15 -05:00
|
|
|
#### Enterprise Options
|
|
|
|
|
|
|
|
@include 'http_api_namespace_options.mdx'
|
|
|
|
|
2021-12-14 17:55:21 -08:00
|
|
|
@include 'http_api_partition_options.mdx'
|
|
|
|
|
2018-05-29 14:07:40 -07:00
|
|
|
#### Intention Match Options
|
|
|
|
|
2020-04-07 14:55:19 -04:00
|
|
|
- `-destination` - Match by destination.
|
2018-05-29 14:07:40 -07:00
|
|
|
|
2020-04-07 14:55:19 -04:00
|
|
|
- `-source` - Match by source.
|
2018-05-29 14:07:40 -07:00
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
2020-05-19 14:32:38 -04:00
|
|
|
```shell-session
|
2018-05-29 14:07:40 -07:00
|
|
|
$ consul intention match -source web
|
|
|
|
web => db (deny)
|
2020-10-14 10:23:05 -05:00
|
|
|
web => api (2 permissions)
|
2018-05-29 14:07:40 -07:00
|
|
|
web => * (allow)
|
|
|
|
```
|