8dbe0017bb
* website: first stab at Connect docs * website: lots more various stuff (bad commit messages) * website: getting started page for Connect * website: intentions * website: intention APIs * website: agent API docs * website: document agent/catalog proxy kind service values * website: /v1/catalog/connect/:service * website: intention CLI docs * website: custom proxy docs * website: remove dedicated getting started guide * website: add docs for CA API endpoints * website: add docs for connect ca commands * website: add proxy CLI docs * website: clean up proxy command, add dev docs * website: todo pages * website: connect security
39 lines
877 B
Plaintext
39 lines
877 B
Plaintext
---
|
|
layout: "docs"
|
|
page_title: "Commands: Intention Match"
|
|
sidebar_current: "docs-commands-intention-match"
|
|
---
|
|
|
|
# Consul Intention Match
|
|
|
|
Command: `consul intention match`
|
|
|
|
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.
|
|
|
|
The [check](/docs/commands/intention/check.html) command can be used to
|
|
check whether a connection would be authorized between any two services.
|
|
|
|
## Usage
|
|
|
|
Usage: `consul intention match [options] SRC_OR_DST`
|
|
|
|
#### API Options
|
|
|
|
<%= partial "docs/commands/http_api_options_client" %>
|
|
|
|
#### Intention Match Options
|
|
|
|
* `-destination` - Match by destination.
|
|
|
|
* `-source` - Match by source.
|
|
|
|
## Examples
|
|
|
|
```text
|
|
$ consul intention match -source web
|
|
web => db (deny)
|
|
web => * (allow)
|
|
```
|