Skip to content

Commit 4adc614

Browse files
committed
Add example of certificate rotation.
1 parent a9246cd commit 4adc614

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

examples/README.md

+28
Original file line numberDiff line numberDiff line change
@@ -196,4 +196,32 @@ Server responded: Hello Mike at 2018-11-03 01:52:52.678215 +0000 UTC!!!
196196
Server responded: Hello Mike at 2018-11-03 01:52:53.681563 +0000 UTC!!!
197197
Server responded: Hello Mike at 2018-11-03 01:52:54.682787 +0000 UTC!!!
198198
...
199+
```
200+
201+
## Certificate rotation
202+
203+
We can use the bootstrap-server to demonstrate the certificate rotation. We've
204+
added second provisioner to to the ca with the name of `mike@smallstep.com`,
205+
this provisioner is configured with a default certificate duration of 2 minutes.
206+
If we run the server, and inspect the used certificate, we can verify how it
207+
rotates after approximately two thirds of the duration has passed.
208+
209+
```
210+
certificates $ export STEPPATH=examples/pki
211+
certificates $ export STEP_CA_URL=https://localhost:9000
212+
certificates $ go run examples/bootstrap-server/server.go $(step ca new-token localhost))
213+
✔ Key ID: YYNxZ0rq0WsT2MlqLCWvgme3jszkmt99KjoGEJJwAKs (mike@smallstep.com)
214+
Please enter the password to decrypt the provisioner key:
215+
Listening on :8443 ...
216+
```
217+
218+
In this specific case, the the rotation will happen after 74-80 seconds have
219+
passed, the exact formula is 120-120/3-rand(120/20), where rand will return a
220+
number between 0 and 6.
221+
222+
We can use the following command to check the certificate expiration and to make
223+
sure the certificate changes after 74-80 seconds.
224+
225+
```
226+
certificates $ step certificate inspect --insecure https://localhost:8443
199227
```

0 commit comments

Comments
 (0)