Root

The certificate_ca resource allows you to create x509 Root Certificates and the associated Private Key.

The following parameters are available for creating certificate_ca resources, when a new resource is created jumppad will create the certificate and associated private key and write them to the output folder. Certificates do not perisist the lifecycle of a blueprint, when a blueprint is destroyed the created certs and keys are removed from the output folder.

Root Certificates have a pre-set Common Name corresponding to the name of the resource.

Examples

resource "certificate_ca" "cd_consul_ca" {
  output = data("certs")
}

Last updated