Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix street-address and postal-code descriptions to be more descriptive. #245

Merged
merged 1 commit into from
Nov 23, 2021
Merged
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 cmd/app/createca.go
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,8 @@ func init() {
createcaCmd.PersistentFlags().String("country", "", "Country name for root CA")
createcaCmd.PersistentFlags().String("province", "", "Province name for root CA")
createcaCmd.PersistentFlags().String("locality", "", "Locality name for root CA")
createcaCmd.PersistentFlags().String("street-address", "", "Locality name for root CA")
createcaCmd.PersistentFlags().String("postal-code", "", "Locality name for root CA")
createcaCmd.PersistentFlags().String("street-address", "", "Street address for root CA")
createcaCmd.PersistentFlags().String("postal-code", "", "Postal code for root CA")
createcaCmd.PersistentFlags().String("out", "", "output root CA to file")
createcaCmd.PersistentFlags().String("hsm", "softhsm", "The HSM provider to use. Valid values: softhsm (default), aws")
if err := viper.BindPFlags(createcaCmd.PersistentFlags()); err != nil {
Expand Down