File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
10
10
- Nothing should go in this section, please add to the latest unreleased version
11
11
(and update the corresponding date), or add a new version.
12
12
13
+ ## [ 8.0.10] - 2023-04-27
14
+
15
+ ### Fixed
16
+ - Fixed missing example commands in help output
17
+ [ cyberark/conjur-cli-go #134 ] ( https://github.com/cyberark/conjur-cli-go/pull/134 )
18
+
13
19
## [ 8.0.9] - 2023-04-21
14
20
15
21
### Security
@@ -90,7 +96,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
90
96
### Added
91
97
- Placeholder version to capture the reset of the repository
92
98
93
- [ Unreleased ] : https://github.com/cyberark/conjur-cli-go/compare/v8.0.8...HEAD
99
+ [ Unreleased ] : https://github.com/cyberark/conjur-cli-go/compare/v8.0.10...HEAD
100
+ [ 8.0.10 ] : https://github.com/cyberark/conjur-cli-go/compare/v8.0.9...v8.0.10
101
+ [ 8.0.9 ] : https://github.com/cyberark/conjur-cli-go/compare/v8.0.8...v8.0.9
94
102
[ 8.0.8 ] : https://github.com/cyberark/conjur-cli-go/compare/v8.0.7...v8.0.8
95
103
[ 8.0.7 ] : https://github.com/cyberark/conjur-cli-go/compare/v8.0.6...v8.0.7
96
104
[ 8.0.6 ] : https://github.com/cyberark/conjur-cli-go/compare/v8.0.5...v8.0.6
Original file line number Diff line number Diff line change @@ -50,6 +50,11 @@ func newHostsCreateCmd(clientFactory createHostClientFactoryFunc) *cobra.Command
50
50
hostsCreateCmd := & cobra.Command {
51
51
Use : "create" ,
52
52
Short : "Use a token to create a host" ,
53
+ Long : `Use a host factory token to create a host.
54
+
55
+ Example:
56
+ - conjur hostfactory hosts create --id TestHost --token 1bfpyr3y41kb039ykpyf2hm87ez2dv9hdc3r5sh1n2h9z7j22mga2da
57
+ ` ,
53
58
RunE : func (cmd * cobra.Command , args []string ) error {
54
59
token , err := cmd .Flags ().GetString ("token" )
55
60
if err != nil {
@@ -224,6 +229,11 @@ func newTokensRevokeCmd(clientFactory revokeTokenClientFactoryFunc) *cobra.Comma
224
229
tokensRevokeCmd := & cobra.Command {
225
230
Use : "revoke" ,
226
231
Short : "Revoke (delete) a token" ,
232
+ Long : `Revoke a host factory token.
233
+
234
+ Example:
235
+ - conjur hostfactory tokens revoke --token 1bfpyr3y41kb039ykpyf2hm87ez2dv9hdc3r5sh1n2h9z7j22mga2da
236
+ ` ,
227
237
228
238
RunE : func (cmd * cobra.Command , args []string ) error {
229
239
token , err := cmd .Flags ().GetString ("token" )
You can’t perform that action at this time.
0 commit comments