certificate

clouddrove/certificate/digitalocean

Terraform Module HCL DIGITALOCEAN

Provides a DigitalOcean Certificate resource that allows you to manage certificates.

Install
module "certificate" {
source = "clouddrove/certificate/digitalocean"
version = "0.15.0"
}
plain text: /constructs/tfmod-clouddrove-certificate-digitalocean/install.txt
⭐ Source on GitHub 📦 Registry page
README

Terraform DigitalOcean SSL Certificate Provides a DigitalOcean Certificate resource that allows you to manage certificates. Prerequisites This module has a few dependencies: IMPORTANT: Since the master branch used in source varies based on new modifications, we suggest that you use the release versions here. Here are examples of how you can use this module in your inventory structure: custom-certificate ``hcl module "custom_certificate" { source = "clouddrove/certificate/digitalocean" version = "0.15.0" certificate_name = "test" private_key = "./../../../_ssl/private-key.pem" leaf_certificate = "./../../../_ssl/star.crt" custom_certificate = true } ` lets-encrypt-certificate `hcl module "lets_encrypt_certificate" { source = "clouddrove/certificate/digitalocean" version = "0.15.0" certifica

Inputs (8)
NameTypeDescriptionDefault
leaf_certificatestringPath of certificate body."~"
certificate_chainstringPath of certificate chain.""
enable_certificateboolA boolean flag to enable/disable certificate.true
custom_certificateboolA boolean flag to enable/disable custom_certificate.false
lets_encrypt_certificateboolA boolean flag to enable/disable lets_encrypt_certificate.false
certificate_namestringThe name of the certificate for identification.""
private_keystringPath of private key.""
domain_nameslist(any)List of fully qualified domain names (FQDNs) for which the certificate will be i[]
Outputs (4)
not_after — The expiration date of the certificate.
sha1_fingerprint — The SHA-1 fingerprint of the certificate.
id — The unique ID of the certificate.
name — The name of the certificate.
Resources (1)
digitalocean_certificate
Details
FrameworkTerraform Module
LanguageHCL
Version0.15.0
Cloud DIGITALOCEAN
★ Stars1
Forks1
Total downloads1.5k
Inputs8
Outputs4
Resources1
LicenseMIT
Namespaceclouddrove
Updated