openssl_append.j2 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. [ etcd_v3_req ]
  2. basicConstraints = critical,CA:FALSE
  3. keyUsage = digitalSignature,keyEncipherment
  4. subjectAltName = ${ENV::SAN}
  5. [ etcd_ca ]
  6. dir = {{ etcd_ca_dir }}
  7. crl_dir = $dir/crl
  8. database = $dir/index.txt
  9. new_certs_dir = $dir/certs
  10. certificate = $dir/ca.crt
  11. serial = $dir/serial
  12. private_key = $dir/ca.key
  13. crl_number = $dir/crlnumber
  14. x509_extensions = etcd_v3_ca_client
  15. default_days = 365
  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_v3_ca_self ]
  24. authorityKeyIdentifier = keyid,issuer
  25. basicConstraints = critical,CA:TRUE,pathlen:0
  26. keyUsage = critical,digitalSignature,keyEncipherment,keyCertSign
  27. subjectKeyIdentifier = hash
  28. [ etcd_v3_ca_peer ]
  29. authorityKeyIdentifier = keyid,issuer:always
  30. basicConstraints = critical,CA:FALSE
  31. extendedKeyUsage = clientAuth,serverAuth
  32. keyUsage = digitalSignature,keyEncipherment
  33. subjectKeyIdentifier = hash
  34. [ etcd_v3_ca_server ]
  35. authorityKeyIdentifier = keyid,issuer:always
  36. basicConstraints = critical,CA:FALSE
  37. extendedKeyUsage = serverAuth
  38. keyUsage = digitalSignature,keyEncipherment
  39. subjectKeyIdentifier = hash
  40. [ etcd_v3_ca_client ]
  41. authorityKeyIdentifier = keyid,issuer:always
  42. basicConstraints = critical,CA:FALSE
  43. extendedKeyUsage = clientAuth
  44. keyUsage = digitalSignature,keyEncipherment
  45. subjectKeyIdentifier = hash