> For the complete CircleCI developer hub index, see [llms.txt](https://circleci.com/developer/llms.txt)

# styra/cli

This orb is a wrapper for the Styra cli tool. The tool allows to run policy checks on your kubernetes configuration files (yaml). To use this orb, you must have a Styra account, if you do not have one already, visit https://styra.com. For detailed usage information, see https://github.com/styrainc/styra-cli-orb


## Commands

### policy-check

Configures and runs the Styra cli

| Parameter | Type | Default | Description |
|---|---|---|---|
| `api_token` | env_var_name |  | Styra API Token for your styra account |
| `tenant` | env_var_name |  | Styra name of your styra account (e.g. test.styra.com) |

## Jobs

### styra-policy-check

## Executors

### cli

## Examples

### check-system-policies

```yaml
version: 2.1
orbs:
  styra-orb: styra/cli
  workflows:
    version: 2.1
    check-workflow:
      jobs:
        - styra-orb/styra-policy-check
```