Skip to content

Commit

Permalink
update ssl-ciphers description (#636)
Browse files Browse the repository at this point in the history
  • Loading branch information
Integralist authored Sep 7, 2022
1 parent 47c0b35 commit 45f9047
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
10 changes: 4 additions & 6 deletions pkg/app/run_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -564,9 +564,8 @@ COMMANDS
--max-tls-version=MAX-TLS-VERSION
Maximum allowed TLS version on SSL
connections to this backend
--ssl-ciphers=SSL-CIPHERS Colon delimited list of OpenSSL ciphers (see
https://www.openssl.org/docs/man1.0.2/man1/ciphers
for details)
--ssl-ciphers=SSL-CIPHERS List of OpenSSL ciphers
(https://www.openssl.org/docs/man1.0.2/man1/ciphers)
backend delete --version=VERSION --name=NAME [<flags>]
Delete a backend on a Fastly service version
Expand Down Expand Up @@ -666,9 +665,8 @@ COMMANDS
--max-tls-version=MAX-TLS-VERSION
Maximum allowed TLS version on SSL
connections to this backend
--ssl-ciphers=SSL-CIPHERS Colon delimited list of OpenSSL ciphers (see
https://www.openssl.org/docs/man1.0.2/man1/ciphers
for details)
--ssl-ciphers=SSL-CIPHERS List of OpenSSL ciphers
(https://www.openssl.org/docs/man1.0.2/man1/ciphers)
compute build [<flags>]
Build a Compute@Edge package locally
Expand Down
2 changes: 1 addition & 1 deletion pkg/commands/backend/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ func NewCreateCommand(parent cmd.Registerer, globals *config.Data, data manifest
c.CmdClause.Flag("ssl-sni-hostname", "Overrides ssl_hostname, but only for SNI in the handshake. Does not affect cert validation at all.").Action(c.sslSNIHostname.Set).StringVar(&c.sslSNIHostname.Value)
c.CmdClause.Flag("min-tls-version", "Minimum allowed TLS version on SSL connections to this backend").StringVar(&c.input.MinTLSVersion)
c.CmdClause.Flag("max-tls-version", "Maximum allowed TLS version on SSL connections to this backend").StringVar(&c.input.MaxTLSVersion)
c.CmdClause.Flag("ssl-ciphers", "Colon delimited list of OpenSSL ciphers (see https://www.openssl.org/docs/man1.0.2/man1/ciphers for details)").StringVar(&c.input.SSLCiphers)
c.CmdClause.Flag("ssl-ciphers", "List of OpenSSL ciphers (https://www.openssl.org/docs/man1.0.2/man1/ciphers)").StringVar(&c.input.SSLCiphers)

return &c
}
Expand Down
2 changes: 1 addition & 1 deletion pkg/commands/backend/update.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ func NewUpdateCommand(parent cmd.Registerer, globals *config.Data, data manifest
c.CmdClause.Flag("ssl-sni-hostname", "Overrides ssl_hostname, but only for SNI in the handshake. Does not affect cert validation at all.").Action(c.SSLSNIHostname.Set).StringVar(&c.SSLSNIHostname.Value)
c.CmdClause.Flag("min-tls-version", "Minimum allowed TLS version on SSL connections to this backend").Action(c.MinTLSVersion.Set).StringVar(&c.MinTLSVersion.Value)
c.CmdClause.Flag("max-tls-version", "Maximum allowed TLS version on SSL connections to this backend").Action(c.MaxTLSVersion.Set).StringVar(&c.MaxTLSVersion.Value)
c.CmdClause.Flag("ssl-ciphers", "Colon delimited list of OpenSSL ciphers (see https://www.openssl.org/docs/man1.0.2/man1/ciphers for details)").Action(c.SSLCiphers.Set).StringVar(&c.SSLCiphers.Value)
c.CmdClause.Flag("ssl-ciphers", "List of OpenSSL ciphers (https://www.openssl.org/docs/man1.0.2/man1/ciphers)").Action(c.SSLCiphers.Set).StringVar(&c.SSLCiphers.Value)
return &c
}

Expand Down

0 comments on commit 45f9047

Please sign in to comment.