Command returns the ssh subcommand.
(ctx context.Context)
| 11 | |
| 12 | // Command returns the ssh subcommand. |
| 13 | func Command(ctx context.Context) cli.Command { |
| 14 | return cli.Command{ |
| 15 | Name: "ssh", |
| 16 | Usage: "manage SSH certificate issuance policies", |
| 17 | UsageText: "**step ca policy ssh** <subcommand> [arguments] [global-flags] [subcommand-flags]", |
| 18 | Description: `**step ca policy ssh** command group provides facilities for managing SSH certificate issuance policies.`, |
| 19 | Subcommands: cli.Commands{ |
| 20 | host.Command(ctx), |
| 21 | user.Command(ctx), |
| 22 | }, |
| 23 | } |
| 24 | } |