» opc_lbaas_certificate
The opc_lbaas_certificate
resource creates and manages an Load Balancer Classic TLS/SSL Digital Certificate.
Server certificates are used to secure the connection between clients and the load balancers. Trusted certificates are used to secure the connection between the load balancer and the origin servers in the server pool.
» Example Usage
resource "opc_lbaas_certificate" "example" {
name = "example-cert1"
type = "SERVER"
private_key = "${var.private_key_pem}"
certificate_body = "${var.cert_pem}"
}
» Argument Reference
-
name
- (Required) The name of the Certificate. -
certificate_body
- (Required) The Certificate data in PEM format. -
type
- (Required) Sets the Certificate Type.TRUSTED
orSERVER
. -
certificate_chain
- (Optional) PEM encoded bodies of all certificates in the chain up to and including the CA certificate. This is not need when the certificate is self signed. -
private_key
- (Optional) The private key data in PEM format. Only required for Server Certificates
» Additional Attributes
In addition to the above, the following values are exported: