-
I can see in the documentation how to request a new certificate using a specific template but I need to sign a VMware VMCA CSR as a subordinate for my VMware lab and step ca sign doesn't allow for template choice as far as I can tell. I'm sure there is some obvious answer I'm missing. In a Windows PKI, I would create the CSR and chose the CA template to issue a subordinate CA from certsrv. I successfully created an issuing cert using step sign --template but VMCA didn't like the cert. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 7 replies
-
Hi @Moxified, within the context of an online CA, templates are configured at the level of the provisioner. Does this help? |
Beta Was this translation helpful? Give feedback.
-
I see you can set the template in a provisioner but it looks like you should be able to define the template json with the --set-file for ca sign:
I tried:
But it errors which is odd because I used that template previously to create an online CA cert succesfully.
|
Beta Was this translation helpful? Give feedback.
Hi @Moxified, within the context of an online CA, templates are configured at the level of the provisioner.
So, instead of running
step ca sign --template
you'd just configure the provisioner with atemplate
config block, and then run a regularstep ca sign
(potentially using the --set or --set-file flags) against that provisioner.Does this help?