digitalocean.Certificate
Explore with Pulumi AI
Provides a DigitalOcean Certificate resource that allows you to manage certificates for configuring TLS termination in Load Balancers. Certificates created with this resource can be referenced in your Load Balancer configuration via their ID. The certificate can either be a custom one provided by you or automatically generated one with Let’s Encrypt.
Example Usage
Custom Certificate
import * as pulumi from "@pulumi/pulumi";
import * as digitalocean from "@pulumi/digitalocean";
import * as std from "@pulumi/std";
const cert = new digitalocean.Certificate("cert", {
name: "custom-example",
type: digitalocean.CertificateType.Custom,
privateKey: std.file({
input: "/Users/myuser/certs/privkey.pem",
}).then(invoke => invoke.result),
leafCertificate: std.file({
input: "/Users/myuser/certs/cert.pem",
}).then(invoke => invoke.result),
certificateChain: std.file({
input: "/Users/myuser/certs/fullchain.pem",
}).then(invoke => invoke.result),
});
import pulumi
import pulumi_digitalocean as digitalocean
import pulumi_std as std
cert = digitalocean.Certificate("cert",
name="custom-example",
type=digitalocean.CertificateType.CUSTOM,
private_key=std.file(input="/Users/myuser/certs/privkey.pem").result,
leaf_certificate=std.file(input="/Users/myuser/certs/cert.pem").result,
certificate_chain=std.file(input="/Users/myuser/certs/fullchain.pem").result)
package main
import (
"github.com/pulumi/pulumi-digitalocean/sdk/v4/go/digitalocean"
"github.com/pulumi/pulumi-std/sdk/go/std"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
invokeFile, err := std.File(ctx, &std.FileArgs{
Input: "/Users/myuser/certs/privkey.pem",
}, nil)
if err != nil {
return err
}
invokeFile1, err := std.File(ctx, &std.FileArgs{
Input: "/Users/myuser/certs/cert.pem",
}, nil)
if err != nil {
return err
}
invokeFile2, err := std.File(ctx, &std.FileArgs{
Input: "/Users/myuser/certs/fullchain.pem",
}, nil)
if err != nil {
return err
}
_, err = digitalocean.NewCertificate(ctx, "cert", &digitalocean.CertificateArgs{
Name: pulumi.String("custom-example"),
Type: pulumi.String(digitalocean.CertificateTypeCustom),
PrivateKey: pulumi.String(invokeFile.Result),
LeafCertificate: pulumi.String(invokeFile1.Result),
CertificateChain: pulumi.String(invokeFile2.Result),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using DigitalOcean = Pulumi.DigitalOcean;
using Std = Pulumi.Std;
return await Deployment.RunAsync(() =>
{
var cert = new DigitalOcean.Certificate("cert", new()
{
Name = "custom-example",
Type = DigitalOcean.CertificateType.Custom,
PrivateKey = Std.File.Invoke(new()
{
Input = "/Users/myuser/certs/privkey.pem",
}).Apply(invoke => invoke.Result),
LeafCertificate = Std.File.Invoke(new()
{
Input = "/Users/myuser/certs/cert.pem",
}).Apply(invoke => invoke.Result),
CertificateChain = Std.File.Invoke(new()
{
Input = "/Users/myuser/certs/fullchain.pem",
}).Apply(invoke => invoke.Result),
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.digitalocean.Certificate;
import com.pulumi.digitalocean.CertificateArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var cert = new Certificate("cert", CertificateArgs.builder()
.name("custom-example")
.type("custom")
.privateKey(StdFunctions.file(FileArgs.builder()
.input("/Users/myuser/certs/privkey.pem")
.build()).result())
.leafCertificate(StdFunctions.file(FileArgs.builder()
.input("/Users/myuser/certs/cert.pem")
.build()).result())
.certificateChain(StdFunctions.file(FileArgs.builder()
.input("/Users/myuser/certs/fullchain.pem")
.build()).result())
.build());
}
}
resources:
cert:
type: digitalocean:Certificate
properties:
name: custom-example
type: custom
privateKey:
fn::invoke:
Function: std:file
Arguments:
input: /Users/myuser/certs/privkey.pem
Return: result
leafCertificate:
fn::invoke:
Function: std:file
Arguments:
input: /Users/myuser/certs/cert.pem
Return: result
certificateChain:
fn::invoke:
Function: std:file
Arguments:
input: /Users/myuser/certs/fullchain.pem
Return: result
Let’s Encrypt Certificate
import * as pulumi from "@pulumi/pulumi";
import * as digitalocean from "@pulumi/digitalocean";
const cert = new digitalocean.Certificate("cert", {
name: "le-example",
type: digitalocean.CertificateType.LetsEncrypt,
domains: ["example.com"],
});
import pulumi
import pulumi_digitalocean as digitalocean
cert = digitalocean.Certificate("cert",
name="le-example",
type=digitalocean.CertificateType.LETS_ENCRYPT,
domains=["example.com"])
package main
import (
"github.com/pulumi/pulumi-digitalocean/sdk/v4/go/digitalocean"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := digitalocean.NewCertificate(ctx, "cert", &digitalocean.CertificateArgs{
Name: pulumi.String("le-example"),
Type: pulumi.String(digitalocean.CertificateTypeLetsEncrypt),
Domains: pulumi.StringArray{
pulumi.String("example.com"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using DigitalOcean = Pulumi.DigitalOcean;
return await Deployment.RunAsync(() =>
{
var cert = new DigitalOcean.Certificate("cert", new()
{
Name = "le-example",
Type = DigitalOcean.CertificateType.LetsEncrypt,
Domains = new[]
{
"example.com",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.digitalocean.Certificate;
import com.pulumi.digitalocean.CertificateArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var cert = new Certificate("cert", CertificateArgs.builder()
.name("le-example")
.type("lets_encrypt")
.domains("example.com")
.build());
}
}
resources:
cert:
type: digitalocean:Certificate
properties:
name: le-example
type: lets_encrypt
domains:
- example.com
Use with Other Resources
Both custom and Let’s Encrypt certificates can be used with other resources
including the digitalocean.LoadBalancer
and digitalocean.Cdn
resources.
import * as pulumi from "@pulumi/pulumi";
import * as digitalocean from "@pulumi/digitalocean";
const cert = new digitalocean.Certificate("cert", {
name: "le-example",
type: digitalocean.CertificateType.LetsEncrypt,
domains: ["example.com"],
});
// Create a new Load Balancer with TLS termination
const _public = new digitalocean.LoadBalancer("public", {
name: "secure-loadbalancer-1",
region: digitalocean.Region.NYC3,
dropletTag: "backend",
forwardingRules: [{
entryPort: 443,
entryProtocol: "https",
targetPort: 80,
targetProtocol: "http",
certificateName: cert.name,
}],
});
import pulumi
import pulumi_digitalocean as digitalocean
cert = digitalocean.Certificate("cert",
name="le-example",
type=digitalocean.CertificateType.LETS_ENCRYPT,
domains=["example.com"])
# Create a new Load Balancer with TLS termination
public = digitalocean.LoadBalancer("public",
name="secure-loadbalancer-1",
region=digitalocean.Region.NYC3,
droplet_tag="backend",
forwarding_rules=[{
"entry_port": 443,
"entry_protocol": "https",
"target_port": 80,
"target_protocol": "http",
"certificate_name": cert.name,
}])
package main
import (
"github.com/pulumi/pulumi-digitalocean/sdk/v4/go/digitalocean"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
cert, err := digitalocean.NewCertificate(ctx, "cert", &digitalocean.CertificateArgs{
Name: pulumi.String("le-example"),
Type: pulumi.String(digitalocean.CertificateTypeLetsEncrypt),
Domains: pulumi.StringArray{
pulumi.String("example.com"),
},
})
if err != nil {
return err
}
// Create a new Load Balancer with TLS termination
_, err = digitalocean.NewLoadBalancer(ctx, "public", &digitalocean.LoadBalancerArgs{
Name: pulumi.String("secure-loadbalancer-1"),
Region: pulumi.String(digitalocean.RegionNYC3),
DropletTag: pulumi.String("backend"),
ForwardingRules: digitalocean.LoadBalancerForwardingRuleArray{
&digitalocean.LoadBalancerForwardingRuleArgs{
EntryPort: pulumi.Int(443),
EntryProtocol: pulumi.String("https"),
TargetPort: pulumi.Int(80),
TargetProtocol: pulumi.String("http"),
CertificateName: cert.Name,
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using DigitalOcean = Pulumi.DigitalOcean;
return await Deployment.RunAsync(() =>
{
var cert = new DigitalOcean.Certificate("cert", new()
{
Name = "le-example",
Type = DigitalOcean.CertificateType.LetsEncrypt,
Domains = new[]
{
"example.com",
},
});
// Create a new Load Balancer with TLS termination
var @public = new DigitalOcean.LoadBalancer("public", new()
{
Name = "secure-loadbalancer-1",
Region = DigitalOcean.Region.NYC3,
DropletTag = "backend",
ForwardingRules = new[]
{
new DigitalOcean.Inputs.LoadBalancerForwardingRuleArgs
{
EntryPort = 443,
EntryProtocol = "https",
TargetPort = 80,
TargetProtocol = "http",
CertificateName = cert.Name,
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.digitalocean.Certificate;
import com.pulumi.digitalocean.CertificateArgs;
import com.pulumi.digitalocean.LoadBalancer;
import com.pulumi.digitalocean.LoadBalancerArgs;
import com.pulumi.digitalocean.inputs.LoadBalancerForwardingRuleArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var cert = new Certificate("cert", CertificateArgs.builder()
.name("le-example")
.type("lets_encrypt")
.domains("example.com")
.build());
// Create a new Load Balancer with TLS termination
var public_ = new LoadBalancer("public", LoadBalancerArgs.builder()
.name("secure-loadbalancer-1")
.region("nyc3")
.dropletTag("backend")
.forwardingRules(LoadBalancerForwardingRuleArgs.builder()
.entryPort(443)
.entryProtocol("https")
.targetPort(80)
.targetProtocol("http")
.certificateName(cert.name())
.build())
.build());
}
}
resources:
cert:
type: digitalocean:Certificate
properties:
name: le-example
type: lets_encrypt
domains:
- example.com
# Create a new Load Balancer with TLS termination
public:
type: digitalocean:LoadBalancer
properties:
name: secure-loadbalancer-1
region: nyc3
dropletTag: backend
forwardingRules:
- entryPort: 443
entryProtocol: https
targetPort: 80
targetProtocol: http
certificateName: ${cert.name}
Create Certificate Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Certificate(name: string, args?: CertificateArgs, opts?: CustomResourceOptions);
@overload
def Certificate(resource_name: str,
args: Optional[CertificateArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Certificate(resource_name: str,
opts: Optional[ResourceOptions] = None,
certificate_chain: Optional[str] = None,
domains: Optional[Sequence[str]] = None,
leaf_certificate: Optional[str] = None,
name: Optional[str] = None,
private_key: Optional[str] = None,
type: Optional[Union[str, CertificateType]] = None)
func NewCertificate(ctx *Context, name string, args *CertificateArgs, opts ...ResourceOption) (*Certificate, error)
public Certificate(string name, CertificateArgs? args = null, CustomResourceOptions? opts = null)
public Certificate(String name, CertificateArgs args)
public Certificate(String name, CertificateArgs args, CustomResourceOptions options)
type: digitalocean:Certificate
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args CertificateArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args CertificateArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args CertificateArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CertificateArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CertificateArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var certificateResource = new DigitalOcean.Certificate("certificateResource", new()
{
CertificateChain = "string",
Domains = new[]
{
"string",
},
LeafCertificate = "string",
Name = "string",
PrivateKey = "string",
Type = "string",
});
example, err := digitalocean.NewCertificate(ctx, "certificateResource", &digitalocean.CertificateArgs{
CertificateChain: pulumi.String("string"),
Domains: pulumi.StringArray{
pulumi.String("string"),
},
LeafCertificate: pulumi.String("string"),
Name: pulumi.String("string"),
PrivateKey: pulumi.String("string"),
Type: pulumi.String("string"),
})
var certificateResource = new Certificate("certificateResource", CertificateArgs.builder()
.certificateChain("string")
.domains("string")
.leafCertificate("string")
.name("string")
.privateKey("string")
.type("string")
.build());
certificate_resource = digitalocean.Certificate("certificateResource",
certificate_chain="string",
domains=["string"],
leaf_certificate="string",
name="string",
private_key="string",
type="string")
const certificateResource = new digitalocean.Certificate("certificateResource", {
certificateChain: "string",
domains: ["string"],
leafCertificate: "string",
name: "string",
privateKey: "string",
type: "string",
});
type: digitalocean:Certificate
properties:
certificateChain: string
domains:
- string
leafCertificate: string
name: string
privateKey: string
type: string
Certificate Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Certificate resource accepts the following input properties:
- Certificate
Chain string - The full PEM-formatted trust chain
between the certificate authority's certificate and your domain's TLS
certificate. Only valid when type is
custom
. - Domains List<string>
- List of fully qualified domain names (FQDNs) for
which the certificate will be issued. The domains must be managed using
DigitalOcean's DNS. Only valid when type is
lets_encrypt
. - Leaf
Certificate string - The contents of a PEM-formatted public
TLS certificate. Only valid when type is
custom
. - Name string
- The name of the certificate for identification.
- Private
Key string - The contents of a PEM-formatted private-key
corresponding to the SSL certificate. Only valid when type is
custom
. - Type
string | Pulumi.
Digital Ocean. Certificate Type - The type of certificate to provision. Can be either
custom
orlets_encrypt
. Defaults tocustom
.
- Certificate
Chain string - The full PEM-formatted trust chain
between the certificate authority's certificate and your domain's TLS
certificate. Only valid when type is
custom
. - Domains []string
- List of fully qualified domain names (FQDNs) for
which the certificate will be issued. The domains must be managed using
DigitalOcean's DNS. Only valid when type is
lets_encrypt
. - Leaf
Certificate string - The contents of a PEM-formatted public
TLS certificate. Only valid when type is
custom
. - Name string
- The name of the certificate for identification.
- Private
Key string - The contents of a PEM-formatted private-key
corresponding to the SSL certificate. Only valid when type is
custom
. - Type
string | Certificate
Type - The type of certificate to provision. Can be either
custom
orlets_encrypt
. Defaults tocustom
.
- certificate
Chain String - The full PEM-formatted trust chain
between the certificate authority's certificate and your domain's TLS
certificate. Only valid when type is
custom
. - domains List<String>
- List of fully qualified domain names (FQDNs) for
which the certificate will be issued. The domains must be managed using
DigitalOcean's DNS. Only valid when type is
lets_encrypt
. - leaf
Certificate String - The contents of a PEM-formatted public
TLS certificate. Only valid when type is
custom
. - name String
- The name of the certificate for identification.
- private
Key String - The contents of a PEM-formatted private-key
corresponding to the SSL certificate. Only valid when type is
custom
. - type
String | Certificate
Type - The type of certificate to provision. Can be either
custom
orlets_encrypt
. Defaults tocustom
.
- certificate
Chain string - The full PEM-formatted trust chain
between the certificate authority's certificate and your domain's TLS
certificate. Only valid when type is
custom
. - domains string[]
- List of fully qualified domain names (FQDNs) for
which the certificate will be issued. The domains must be managed using
DigitalOcean's DNS. Only valid when type is
lets_encrypt
. - leaf
Certificate string - The contents of a PEM-formatted public
TLS certificate. Only valid when type is
custom
. - name string
- The name of the certificate for identification.
- private
Key string - The contents of a PEM-formatted private-key
corresponding to the SSL certificate. Only valid when type is
custom
. - type
string | Certificate
Type - The type of certificate to provision. Can be either
custom
orlets_encrypt
. Defaults tocustom
.
- certificate_
chain str - The full PEM-formatted trust chain
between the certificate authority's certificate and your domain's TLS
certificate. Only valid when type is
custom
. - domains Sequence[str]
- List of fully qualified domain names (FQDNs) for
which the certificate will be issued. The domains must be managed using
DigitalOcean's DNS. Only valid when type is
lets_encrypt
. - leaf_
certificate str - The contents of a PEM-formatted public
TLS certificate. Only valid when type is
custom
. - name str
- The name of the certificate for identification.
- private_
key str - The contents of a PEM-formatted private-key
corresponding to the SSL certificate. Only valid when type is
custom
. - type
str | Certificate
Type - The type of certificate to provision. Can be either
custom
orlets_encrypt
. Defaults tocustom
.
- certificate
Chain String - The full PEM-formatted trust chain
between the certificate authority's certificate and your domain's TLS
certificate. Only valid when type is
custom
. - domains List<String>
- List of fully qualified domain names (FQDNs) for
which the certificate will be issued. The domains must be managed using
DigitalOcean's DNS. Only valid when type is
lets_encrypt
. - leaf
Certificate String - The contents of a PEM-formatted public
TLS certificate. Only valid when type is
custom
. - name String
- The name of the certificate for identification.
- private
Key String - The contents of a PEM-formatted private-key
corresponding to the SSL certificate. Only valid when type is
custom
. - type
String | "lets_
encrypt" | "custom" - The type of certificate to provision. Can be either
custom
orlets_encrypt
. Defaults tocustom
.
Outputs
All input properties are implicitly available as output properties. Additionally, the Certificate resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Not
After string - The expiration date of the certificate
- Sha1Fingerprint string
- The SHA-1 fingerprint of the certificate
- State string
- Uuid string
- The UUID of the certificate
- Id string
- The provider-assigned unique ID for this managed resource.
- Not
After string - The expiration date of the certificate
- Sha1Fingerprint string
- The SHA-1 fingerprint of the certificate
- State string
- Uuid string
- The UUID of the certificate
- id String
- The provider-assigned unique ID for this managed resource.
- not
After String - The expiration date of the certificate
- sha1Fingerprint String
- The SHA-1 fingerprint of the certificate
- state String
- uuid String
- The UUID of the certificate
- id string
- The provider-assigned unique ID for this managed resource.
- not
After string - The expiration date of the certificate
- sha1Fingerprint string
- The SHA-1 fingerprint of the certificate
- state string
- uuid string
- The UUID of the certificate
- id str
- The provider-assigned unique ID for this managed resource.
- not_
after str - The expiration date of the certificate
- sha1_
fingerprint str - The SHA-1 fingerprint of the certificate
- state str
- uuid str
- The UUID of the certificate
- id String
- The provider-assigned unique ID for this managed resource.
- not
After String - The expiration date of the certificate
- sha1Fingerprint String
- The SHA-1 fingerprint of the certificate
- state String
- uuid String
- The UUID of the certificate
Look up Existing Certificate Resource
Get an existing Certificate resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: CertificateState, opts?: CustomResourceOptions): Certificate
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
certificate_chain: Optional[str] = None,
domains: Optional[Sequence[str]] = None,
leaf_certificate: Optional[str] = None,
name: Optional[str] = None,
not_after: Optional[str] = None,
private_key: Optional[str] = None,
sha1_fingerprint: Optional[str] = None,
state: Optional[str] = None,
type: Optional[Union[str, CertificateType]] = None,
uuid: Optional[str] = None) -> Certificate
func GetCertificate(ctx *Context, name string, id IDInput, state *CertificateState, opts ...ResourceOption) (*Certificate, error)
public static Certificate Get(string name, Input<string> id, CertificateState? state, CustomResourceOptions? opts = null)
public static Certificate get(String name, Output<String> id, CertificateState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Certificate
Chain string - The full PEM-formatted trust chain
between the certificate authority's certificate and your domain's TLS
certificate. Only valid when type is
custom
. - Domains List<string>
- List of fully qualified domain names (FQDNs) for
which the certificate will be issued. The domains must be managed using
DigitalOcean's DNS. Only valid when type is
lets_encrypt
. - Leaf
Certificate string - The contents of a PEM-formatted public
TLS certificate. Only valid when type is
custom
. - Name string
- The name of the certificate for identification.
- Not
After string - The expiration date of the certificate
- Private
Key string - The contents of a PEM-formatted private-key
corresponding to the SSL certificate. Only valid when type is
custom
. - Sha1Fingerprint string
- The SHA-1 fingerprint of the certificate
- State string
- Type
string | Pulumi.
Digital Ocean. Certificate Type - The type of certificate to provision. Can be either
custom
orlets_encrypt
. Defaults tocustom
. - Uuid string
- The UUID of the certificate
- Certificate
Chain string - The full PEM-formatted trust chain
between the certificate authority's certificate and your domain's TLS
certificate. Only valid when type is
custom
. - Domains []string
- List of fully qualified domain names (FQDNs) for
which the certificate will be issued. The domains must be managed using
DigitalOcean's DNS. Only valid when type is
lets_encrypt
. - Leaf
Certificate string - The contents of a PEM-formatted public
TLS certificate. Only valid when type is
custom
. - Name string
- The name of the certificate for identification.
- Not
After string - The expiration date of the certificate
- Private
Key string - The contents of a PEM-formatted private-key
corresponding to the SSL certificate. Only valid when type is
custom
. - Sha1Fingerprint string
- The SHA-1 fingerprint of the certificate
- State string
- Type
string | Certificate
Type - The type of certificate to provision. Can be either
custom
orlets_encrypt
. Defaults tocustom
. - Uuid string
- The UUID of the certificate
- certificate
Chain String - The full PEM-formatted trust chain
between the certificate authority's certificate and your domain's TLS
certificate. Only valid when type is
custom
. - domains List<String>
- List of fully qualified domain names (FQDNs) for
which the certificate will be issued. The domains must be managed using
DigitalOcean's DNS. Only valid when type is
lets_encrypt
. - leaf
Certificate String - The contents of a PEM-formatted public
TLS certificate. Only valid when type is
custom
. - name String
- The name of the certificate for identification.
- not
After String - The expiration date of the certificate
- private
Key String - The contents of a PEM-formatted private-key
corresponding to the SSL certificate. Only valid when type is
custom
. - sha1Fingerprint String
- The SHA-1 fingerprint of the certificate
- state String
- type
String | Certificate
Type - The type of certificate to provision. Can be either
custom
orlets_encrypt
. Defaults tocustom
. - uuid String
- The UUID of the certificate
- certificate
Chain string - The full PEM-formatted trust chain
between the certificate authority's certificate and your domain's TLS
certificate. Only valid when type is
custom
. - domains string[]
- List of fully qualified domain names (FQDNs) for
which the certificate will be issued. The domains must be managed using
DigitalOcean's DNS. Only valid when type is
lets_encrypt
. - leaf
Certificate string - The contents of a PEM-formatted public
TLS certificate. Only valid when type is
custom
. - name string
- The name of the certificate for identification.
- not
After string - The expiration date of the certificate
- private
Key string - The contents of a PEM-formatted private-key
corresponding to the SSL certificate. Only valid when type is
custom
. - sha1Fingerprint string
- The SHA-1 fingerprint of the certificate
- state string
- type
string | Certificate
Type - The type of certificate to provision. Can be either
custom
orlets_encrypt
. Defaults tocustom
. - uuid string
- The UUID of the certificate
- certificate_
chain str - The full PEM-formatted trust chain
between the certificate authority's certificate and your domain's TLS
certificate. Only valid when type is
custom
. - domains Sequence[str]
- List of fully qualified domain names (FQDNs) for
which the certificate will be issued. The domains must be managed using
DigitalOcean's DNS. Only valid when type is
lets_encrypt
. - leaf_
certificate str - The contents of a PEM-formatted public
TLS certificate. Only valid when type is
custom
. - name str
- The name of the certificate for identification.
- not_
after str - The expiration date of the certificate
- private_
key str - The contents of a PEM-formatted private-key
corresponding to the SSL certificate. Only valid when type is
custom
. - sha1_
fingerprint str - The SHA-1 fingerprint of the certificate
- state str
- type
str | Certificate
Type - The type of certificate to provision. Can be either
custom
orlets_encrypt
. Defaults tocustom
. - uuid str
- The UUID of the certificate
- certificate
Chain String - The full PEM-formatted trust chain
between the certificate authority's certificate and your domain's TLS
certificate. Only valid when type is
custom
. - domains List<String>
- List of fully qualified domain names (FQDNs) for
which the certificate will be issued. The domains must be managed using
DigitalOcean's DNS. Only valid when type is
lets_encrypt
. - leaf
Certificate String - The contents of a PEM-formatted public
TLS certificate. Only valid when type is
custom
. - name String
- The name of the certificate for identification.
- not
After String - The expiration date of the certificate
- private
Key String - The contents of a PEM-formatted private-key
corresponding to the SSL certificate. Only valid when type is
custom
. - sha1Fingerprint String
- The SHA-1 fingerprint of the certificate
- state String
- type
String | "lets_
encrypt" | "custom" - The type of certificate to provision. Can be either
custom
orlets_encrypt
. Defaults tocustom
. - uuid String
- The UUID of the certificate
Supporting Types
CertificateType, CertificateTypeArgs
- Lets
Encrypt - lets_encrypt
- Custom
- custom
- Certificate
Type Lets Encrypt - lets_encrypt
- Certificate
Type Custom - custom
- Lets
Encrypt - lets_encrypt
- Custom
- custom
- Lets
Encrypt - lets_encrypt
- Custom
- custom
- LETS_ENCRYPT
- lets_encrypt
- CUSTOM
- custom
- "lets_
encrypt" - lets_encrypt
- "custom"
- custom
Import
Certificates can be imported using the certificate name
, e.g.
$ pulumi import digitalocean:index/certificate:Certificate mycertificate cert-01
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- DigitalOcean pulumi/pulumi-digitalocean
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
digitalocean
Terraform Provider.