Skip to content

Commit 272bbc5

Browse files
committed
Remove new- prefix for ca token and ca certificate commands.
1 parent e050c5c commit 272bbc5

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ provides a single command that will prompt you to select and decrypt an
210210
authorized provisioner and then request a new certificate.
211211

212212
```
213-
$ step ca new-certificate "foo.example.com" foo.crt foo.key --ca-url ca.smallstep.com \
213+
$ step ca certificate "foo.example.com" foo.crt foo.key --ca-url ca.smallstep.com \
214214
--root /path/to/root_ca.crt
215215
```
216216

@@ -219,12 +219,12 @@ configuration management solution (no user input) you would split the above flow
219219
into two commands.
220220

221221
```
222-
$ TOKEN=$(step ca new-token foo.example.com \
222+
$ TOKEN=$(step ca token foo.example.com \
223223
--kid 4vn46fbZT68Uxfs9LBwHkTvrjEvxQqx-W8nnE-qDjts \
224224
--ca-url https://ca.example.com \
225225
--root /path/to/root_ca.crt --password-file /path/to/provisioner/password)
226226
227-
$ step ca new-certificate "foo.example.com" foo.crt foo.key --token "$TOKEN" \
227+
$ step ca certificate "foo.example.com" foo.crt foo.key --token "$TOKEN" \
228228
--ca-url https://ca.example.com --root /path/to/root_ca.crt
229229
```
230230

examples/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ And just run the client.go with a new token:
128128
```sh
129129
certificates $ export STEPPATH=examples/pki
130130
certificates $ export STEP_CA_URL=https://localhost:9000
131-
certificates $ go run examples/basic-client/client.go $(step ca new-token client.smallstep.com)
131+
certificates $ go run examples/basic-client/client.go $(step ca token client.smallstep.com)
132132
```
133133

134134
## Bootstrap Client & Server
@@ -182,7 +182,7 @@ provisioner password:
182182
```sh
183183
certificates $ export STEPPATH=examples/pki
184184
certificates $ export STEP_CA_URL=https://localhost:9000
185-
certificates $ go run examples/bootstrap-server/server.go $(step ca new-token localhost)
185+
certificates $ go run examples/bootstrap-server/server.go $(step ca token localhost)
186186
✔ Key ID: DmAtZt2EhmZr_iTJJ387fr4Md2NbzMXGdXQNW1UWPXk (mariano@smallstep.com)
187187
Please enter the password to decrypt the provisioner key:
188188
Listening on :8443 ...
@@ -220,7 +220,7 @@ But if we the client with the certificate name Mike we'll see:
220220
```sh
221221
certificates $ export STEPPATH=examples/pki
222222
certificates $ export STEP_CA_URL=https://localhost:9000
223-
certificates $ go run examples/bootstrap-client/client.go $(step ca new-token Mike)
223+
certificates $ go run examples/bootstrap-client/client.go $(step ca token Mike)
224224
✔ Key ID: DmAtZt2EhmZr_iTJJ387fr4Md2NbzMXGdXQNW1UWPXk (mariano@smallstep.com)
225225
Please enter the password to decrypt the provisioner key:
226226
Server responded: Hello Mike at 2018-11-03 01:52:52.678215 +0000 UTC!!!
@@ -240,7 +240,7 @@ rotates after approximately two thirds of the duration has passed.
240240
```sh
241241
certificates $ export STEPPATH=examples/pki
242242
certificates $ export STEP_CA_URL=https://localhost:9000
243-
certificates $ go run examples/bootstrap-server/server.go $(step ca new-token localhost))
243+
certificates $ go run examples/bootstrap-server/server.go $(step ca token localhost))
244244
✔ Key ID: YYNxZ0rq0WsT2MlqLCWvgme3jszkmt99KjoGEJJwAKs (mike@smallstep.com)
245245
Please enter the password to decrypt the provisioner key:
246246
Listening on :8443 ...

0 commit comments

Comments
 (0)