Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions command/ca/policy/x509/allow.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ func allowCommand(ctx context.Context) cli.Command {
return cli.Command{
Name: "allow",
Usage: "manage allowed names for X.509 certificate issuance policies",
UsageText: "**step ca policy x509 allow** <subcommand> [arguments] [global-flags] [subcommand-flags]",
Description: `**step ca policy x509 allow** command group provides facilities for managing X.509 names to be allowed.`,
UsageText: "**step ca policy <scope> x509 allow** <subcommand> [arguments] [global-flags] [subcommand-flags]",
Description: `**step ca policy <scope> x509 allow** command group provides facilities for managing X.509 names to be allowed.`,
Subcommands: cli.Commands{
actions.CommonNamesCommand(ctx),
actions.DNSCommand(ctx),
Expand Down
4 changes: 2 additions & 2 deletions command/ca/policy/x509/deny.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ func denyCommand(ctx context.Context) cli.Command {
return cli.Command{
Name: "deny",
Usage: "manage denied names for X.509 certificate issuance policies",
UsageText: "**step ca policy x509 deny** <subcommand> [arguments] [global-flags] [subcommand-flags]",
Description: `**step ca policy x509 deny** command group provides facilities for managing X.509 names to be denied.`,
UsageText: "**step ca policy <scope> x509 deny** <subcommand> [arguments] [global-flags] [subcommand-flags]",
Description: `**step ca policy <scope> x509 deny** command group provides facilities for managing X.509 names to be denied.`,
Subcommands: cli.Commands{
actions.CommonNamesCommand(ctx),
actions.DNSCommand(ctx),
Expand Down
12 changes: 6 additions & 6 deletions command/ca/policy/x509/wildcards.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ func wildcardsCommand(ctx context.Context) cli.Command {
return cli.Command{
Name: "wildcards",
Usage: "manage wildcard name settings for X.509 certificate issuance policies",
UsageText: `**step ca policy x509 wildcards**`,
Description: `**step ca policy x509 wildcards** command group provides facilities for managing X.509 wildcard names.`,
UsageText: `**step ca policy <scope> x509 wildcards**`,
Description: `**step ca policy <scope> x509 wildcards** command group provides facilities for managing X.509 wildcard names.`,
Subcommands: cli.Commands{
allowWildcardsCommand(ctx),
denyWildcardsCommand(ctx),
Expand All @@ -31,12 +31,12 @@ func allowWildcardsCommand(ctx context.Context) cli.Command {
return cli.Command{
Name: "allow",
Usage: "allow wildcard names in X.509 certificate issuance policies",
UsageText: `**step ca policy x509 wildcards allow**
UsageText: `**step ca policy <scope> x509 wildcards allow**
[**--provisioner**=<name>] [**--eab-key-id**=<eab-key-id>] [**--eab-key-reference**=<eab-key-reference>]
[**--admin-cert**=<file>] [**--admin-key**=<file>] [**--admin-subject**=<subject>]
[**--admin-provisioner**=<name>] [**--admin-password-file**=<file>]
[**--ca-url**=<uri>] [**--root**=<file>] [**--context**=<name>]`,
Description: `**step ca policy x509 wildcards allow** allow wildcard names in X.509 policy
Description: `**step ca policy <scope> x509 wildcards allow** allow wildcard names in X.509 policy

## EXAMPLES

Expand Down Expand Up @@ -78,12 +78,12 @@ func denyWildcardsCommand(ctx context.Context) cli.Command {
return cli.Command{
Name: "deny",
Usage: "deny wildcard names in X.509 certificate issuance policies",
UsageText: `**step ca policy x509 wildcards deny**
UsageText: `**step ca policy <scope> x509 wildcards deny**
[**--provisioner**=<name>] [**--eab-key-id**=<eab-key-id>] [**--eab-key-reference**=<eab-key-reference>]
[**--admin-cert**=<file>] [**--admin-key**=<file>] [**--admin-subject**=<subject>]
[**--admin-provisioner**=<name>] [**--admin-password-file**=<file>]
[**--ca-url**=<uri>] [**--root**=<file>] [**--context**=<name>]`,
Description: `**step ca policy x509 wildcards deny** deny wildcard names in X.509 policy
Description: `**step ca policy <scope> x509 wildcards deny** deny wildcard names in X.509 policy

## EXAMPLES

Expand Down
4 changes: 2 additions & 2 deletions command/ca/policy/x509/x509.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ func Command(ctx context.Context) cli.Command {
return cli.Command{
Name: "x509",
Usage: "manage X.509 certificate issuance policies",
UsageText: `**step ca policy x509** <subcommand> [arguments] [global-flags] [subcommand-flags]`,
Description: `**step ca policy x509** command group provides facilities for managing X.509 certificate issuance policies.`,
UsageText: `**step ca policy <scope> x509** <subcommand> [arguments] [global-flags] [subcommand-flags]`,
Description: `**step ca policy <scope> x509** command group provides facilities for managing X.509 certificate issuance policies.`,
Subcommands: cli.Commands{
allowCommand(ctx),
denyCommand(ctx),
Expand Down