cfssl-server-role/roles/cfssl-server/templates/csr.json.j2

7 lines
258 B
Text
Raw Normal View History

2022-12-16 16:51:39 +00:00
{
"CN": {{item.cname | to_json}},
"hosts": {{ (item.sans|default([]) + item.altips|default([]) + item.cname.split(',')) | to_json}},
"key" : {{item.key | default(pki_key) | to_json}},
"names" : {{item.names | default(pki_names) | to_json}}
}