openssl_append.j2 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. [ {{ etcd_req_ext }} ]
  2. basicConstraints = critical,CA:FALSE
  3. keyUsage = digitalSignature,keyEncipherment
  4. subjectAltName = ${ENV::SAN}
  5. [ {{ etcd_ca_name }} ]
  6. dir = {{ etcd_ca_dir }}
  7. crl_dir = {{ etcd_ca_crl_dir }}
  8. database = {{ etcd_ca_db }}
  9. new_certs_dir = {{ etcd_ca_new_certs_dir }}
  10. certificate = {{ etcd_ca_cert }}
  11. serial = {{ etcd_ca_serial }}
  12. private_key = {{ etcd_ca_key }}
  13. crl_number = {{ etcd_ca_crl_number }}
  14. x509_extensions = {{ etcd_ca_exts_client }}
  15. default_days = {{ etcd_ca_default_days }}
  16. default_md = sha256
  17. preserve = no
  18. name_opt = ca_default
  19. cert_opt = ca_default
  20. policy = policy_anything
  21. unique_subject = no
  22. copy_extensions = copy
  23. [ {{ etcd_ca_exts_self }} ]
  24. authorityKeyIdentifier = keyid,issuer
  25. basicConstraints = critical,CA:TRUE,pathlen:0
  26. keyUsage = critical,digitalSignature,keyEncipherment,keyCertSign
  27. subjectKeyIdentifier = hash
  28. [ {{ etcd_ca_exts_peer }} ]
  29. authorityKeyIdentifier = keyid,issuer:always
  30. basicConstraints = critical,CA:FALSE
  31. extendedKeyUsage = clientAuth,serverAuth
  32. keyUsage = digitalSignature,keyEncipherment
  33. subjectKeyIdentifier = hash
  34. [ {{ etcd_ca_exts_server }} ]
  35. authorityKeyIdentifier = keyid,issuer:always
  36. basicConstraints = critical,CA:FALSE
  37. extendedKeyUsage = serverAuth
  38. keyUsage = digitalSignature,keyEncipherment
  39. subjectKeyIdentifier = hash
  40. [ {{ etcd_ca_exts_client }} ]
  41. authorityKeyIdentifier = keyid,issuer:always
  42. basicConstraints = critical,CA:FALSE
  43. extendedKeyUsage = clientAuth
  44. keyUsage = digitalSignature,keyEncipherment
  45. subjectKeyIdentifier = hash