cloudflare.CustomSsl
Explore with Pulumi AI
Provides a Cloudflare custom SSL resource.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as cloudflare from "@pulumi/cloudflare";
const example = new cloudflare.CustomSsl("example", {
zoneId: "0da42c8d2132a9ddaf714f9e7c920711",
customSslOptions: {
certificate: "-----INSERT CERTIFICATE-----",
privateKey: "-----INSERT PRIVATE KEY-----",
bundleMethod: "ubiquitous",
geoRestrictions: "us",
type: "legacy_custom",
},
});
import pulumi
import pulumi_cloudflare as cloudflare
example = cloudflare.CustomSsl("example",
zone_id="0da42c8d2132a9ddaf714f9e7c920711",
custom_ssl_options={
"certificate": "-----INSERT CERTIFICATE-----",
"private_key": "-----INSERT PRIVATE KEY-----",
"bundle_method": "ubiquitous",
"geo_restrictions": "us",
"type": "legacy_custom",
})
package main
import (
"github.com/pulumi/pulumi-cloudflare/sdk/v5/go/cloudflare"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := cloudflare.NewCustomSsl(ctx, "example", &cloudflare.CustomSslArgs{
ZoneId: pulumi.String("0da42c8d2132a9ddaf714f9e7c920711"),
CustomSslOptions: &cloudflare.CustomSslCustomSslOptionsArgs{
Certificate: pulumi.String("-----INSERT CERTIFICATE-----"),
PrivateKey: pulumi.String("-----INSERT PRIVATE KEY-----"),
BundleMethod: pulumi.String("ubiquitous"),
GeoRestrictions: pulumi.String("us"),
Type: pulumi.String("legacy_custom"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Cloudflare = Pulumi.Cloudflare;
return await Deployment.RunAsync(() =>
{
var example = new Cloudflare.CustomSsl("example", new()
{
ZoneId = "0da42c8d2132a9ddaf714f9e7c920711",
CustomSslOptions = new Cloudflare.Inputs.CustomSslCustomSslOptionsArgs
{
Certificate = "-----INSERT CERTIFICATE-----",
PrivateKey = "-----INSERT PRIVATE KEY-----",
BundleMethod = "ubiquitous",
GeoRestrictions = "us",
Type = "legacy_custom",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.cloudflare.CustomSsl;
import com.pulumi.cloudflare.CustomSslArgs;
import com.pulumi.cloudflare.inputs.CustomSslCustomSslOptionsArgs;
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 example = new CustomSsl("example", CustomSslArgs.builder()
.zoneId("0da42c8d2132a9ddaf714f9e7c920711")
.customSslOptions(CustomSslCustomSslOptionsArgs.builder()
.certificate("-----INSERT CERTIFICATE-----")
.privateKey("-----INSERT PRIVATE KEY-----")
.bundleMethod("ubiquitous")
.geoRestrictions("us")
.type("legacy_custom")
.build())
.build());
}
}
resources:
example:
type: cloudflare:CustomSsl
properties:
zoneId: 0da42c8d2132a9ddaf714f9e7c920711
customSslOptions:
certificate: '-----INSERT CERTIFICATE-----'
privateKey: '-----INSERT PRIVATE KEY-----'
bundleMethod: ubiquitous
geoRestrictions: us
type: legacy_custom
Create CustomSsl Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CustomSsl(name: string, args: CustomSslArgs, opts?: CustomResourceOptions);
@overload
def CustomSsl(resource_name: str,
args: CustomSslArgs,
opts: Optional[ResourceOptions] = None)
@overload
def CustomSsl(resource_name: str,
opts: Optional[ResourceOptions] = None,
zone_id: Optional[str] = None,
custom_ssl_options: Optional[CustomSslCustomSslOptionsArgs] = None,
custom_ssl_priorities: Optional[Sequence[CustomSslCustomSslPriorityArgs]] = None)
func NewCustomSsl(ctx *Context, name string, args CustomSslArgs, opts ...ResourceOption) (*CustomSsl, error)
public CustomSsl(string name, CustomSslArgs args, CustomResourceOptions? opts = null)
public CustomSsl(String name, CustomSslArgs args)
public CustomSsl(String name, CustomSslArgs args, CustomResourceOptions options)
type: cloudflare:CustomSsl
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 CustomSslArgs
- 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 CustomSslArgs
- 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 CustomSslArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CustomSslArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CustomSslArgs
- 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 customSslResource = new Cloudflare.CustomSsl("customSslResource", new()
{
ZoneId = "string",
CustomSslOptions = new Cloudflare.Inputs.CustomSslCustomSslOptionsArgs
{
BundleMethod = "string",
Certificate = "string",
GeoRestrictions = "string",
PrivateKey = "string",
Type = "string",
},
CustomSslPriorities = new[]
{
new Cloudflare.Inputs.CustomSslCustomSslPriorityArgs
{
Id = "string",
Priority = 0,
},
},
});
example, err := cloudflare.NewCustomSsl(ctx, "customSslResource", &cloudflare.CustomSslArgs{
ZoneId: pulumi.String("string"),
CustomSslOptions: &cloudflare.CustomSslCustomSslOptionsArgs{
BundleMethod: pulumi.String("string"),
Certificate: pulumi.String("string"),
GeoRestrictions: pulumi.String("string"),
PrivateKey: pulumi.String("string"),
Type: pulumi.String("string"),
},
CustomSslPriorities: cloudflare.CustomSslCustomSslPriorityArray{
&cloudflare.CustomSslCustomSslPriorityArgs{
Id: pulumi.String("string"),
Priority: pulumi.Int(0),
},
},
})
var customSslResource = new CustomSsl("customSslResource", CustomSslArgs.builder()
.zoneId("string")
.customSslOptions(CustomSslCustomSslOptionsArgs.builder()
.bundleMethod("string")
.certificate("string")
.geoRestrictions("string")
.privateKey("string")
.type("string")
.build())
.customSslPriorities(CustomSslCustomSslPriorityArgs.builder()
.id("string")
.priority(0)
.build())
.build());
custom_ssl_resource = cloudflare.CustomSsl("customSslResource",
zone_id="string",
custom_ssl_options={
"bundle_method": "string",
"certificate": "string",
"geo_restrictions": "string",
"private_key": "string",
"type": "string",
},
custom_ssl_priorities=[{
"id": "string",
"priority": 0,
}])
const customSslResource = new cloudflare.CustomSsl("customSslResource", {
zoneId: "string",
customSslOptions: {
bundleMethod: "string",
certificate: "string",
geoRestrictions: "string",
privateKey: "string",
type: "string",
},
customSslPriorities: [{
id: "string",
priority: 0,
}],
});
type: cloudflare:CustomSsl
properties:
customSslOptions:
bundleMethod: string
certificate: string
geoRestrictions: string
privateKey: string
type: string
customSslPriorities:
- id: string
priority: 0
zoneId: string
CustomSsl Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The CustomSsl resource accepts the following input properties:
- Zone
Id string - The zone identifier to target for the resource.
- Custom
Ssl CustomOptions Ssl Custom Ssl Options - The certificate associated parameters. Modifying this attribute will force creation of a new resource.
- Custom
Ssl List<CustomPriorities Ssl Custom Ssl Priority>
- Zone
Id string - The zone identifier to target for the resource.
- Custom
Ssl CustomOptions Ssl Custom Ssl Options Args - The certificate associated parameters. Modifying this attribute will force creation of a new resource.
- Custom
Ssl []CustomPriorities Ssl Custom Ssl Priority Args
- zone
Id String - The zone identifier to target for the resource.
- custom
Ssl CustomOptions Ssl Custom Ssl Options - The certificate associated parameters. Modifying this attribute will force creation of a new resource.
- custom
Ssl List<CustomPriorities Ssl Custom Ssl Priority>
- zone
Id string - The zone identifier to target for the resource.
- custom
Ssl CustomOptions Ssl Custom Ssl Options - The certificate associated parameters. Modifying this attribute will force creation of a new resource.
- custom
Ssl CustomPriorities Ssl Custom Ssl Priority[]
- zone_
id str - The zone identifier to target for the resource.
- custom_
ssl_ Customoptions Ssl Custom Ssl Options Args - The certificate associated parameters. Modifying this attribute will force creation of a new resource.
- custom_
ssl_ Sequence[Custompriorities Ssl Custom Ssl Priority Args]
- zone
Id String - The zone identifier to target for the resource.
- custom
Ssl Property MapOptions - The certificate associated parameters. Modifying this attribute will force creation of a new resource.
- custom
Ssl List<Property Map>Priorities
Outputs
All input properties are implicitly available as output properties. Additionally, the CustomSsl resource produces the following output properties:
- Expires
On string - Hosts List<string>
- Id string
- The provider-assigned unique ID for this managed resource.
- Issuer string
- Modified
On string - Priority int
- Signature string
- Status string
- Uploaded
On string
- Expires
On string - Hosts []string
- Id string
- The provider-assigned unique ID for this managed resource.
- Issuer string
- Modified
On string - Priority int
- Signature string
- Status string
- Uploaded
On string
- expires
On String - hosts List<String>
- id String
- The provider-assigned unique ID for this managed resource.
- issuer String
- modified
On String - priority Integer
- signature String
- status String
- uploaded
On String
- expires
On string - hosts string[]
- id string
- The provider-assigned unique ID for this managed resource.
- issuer string
- modified
On string - priority number
- signature string
- status string
- uploaded
On string
- expires_
on str - hosts Sequence[str]
- id str
- The provider-assigned unique ID for this managed resource.
- issuer str
- modified_
on str - priority int
- signature str
- status str
- uploaded_
on str
- expires
On String - hosts List<String>
- id String
- The provider-assigned unique ID for this managed resource.
- issuer String
- modified
On String - priority Number
- signature String
- status String
- uploaded
On String
Look up Existing CustomSsl Resource
Get an existing CustomSsl 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?: CustomSslState, opts?: CustomResourceOptions): CustomSsl
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
custom_ssl_options: Optional[CustomSslCustomSslOptionsArgs] = None,
custom_ssl_priorities: Optional[Sequence[CustomSslCustomSslPriorityArgs]] = None,
expires_on: Optional[str] = None,
hosts: Optional[Sequence[str]] = None,
issuer: Optional[str] = None,
modified_on: Optional[str] = None,
priority: Optional[int] = None,
signature: Optional[str] = None,
status: Optional[str] = None,
uploaded_on: Optional[str] = None,
zone_id: Optional[str] = None) -> CustomSsl
func GetCustomSsl(ctx *Context, name string, id IDInput, state *CustomSslState, opts ...ResourceOption) (*CustomSsl, error)
public static CustomSsl Get(string name, Input<string> id, CustomSslState? state, CustomResourceOptions? opts = null)
public static CustomSsl get(String name, Output<String> id, CustomSslState 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.
- Custom
Ssl CustomOptions Ssl Custom Ssl Options - The certificate associated parameters. Modifying this attribute will force creation of a new resource.
- Custom
Ssl List<CustomPriorities Ssl Custom Ssl Priority> - Expires
On string - Hosts List<string>
- Issuer string
- Modified
On string - Priority int
- Signature string
- Status string
- Uploaded
On string - Zone
Id string - The zone identifier to target for the resource.
- Custom
Ssl CustomOptions Ssl Custom Ssl Options Args - The certificate associated parameters. Modifying this attribute will force creation of a new resource.
- Custom
Ssl []CustomPriorities Ssl Custom Ssl Priority Args - Expires
On string - Hosts []string
- Issuer string
- Modified
On string - Priority int
- Signature string
- Status string
- Uploaded
On string - Zone
Id string - The zone identifier to target for the resource.
- custom
Ssl CustomOptions Ssl Custom Ssl Options - The certificate associated parameters. Modifying this attribute will force creation of a new resource.
- custom
Ssl List<CustomPriorities Ssl Custom Ssl Priority> - expires
On String - hosts List<String>
- issuer String
- modified
On String - priority Integer
- signature String
- status String
- uploaded
On String - zone
Id String - The zone identifier to target for the resource.
- custom
Ssl CustomOptions Ssl Custom Ssl Options - The certificate associated parameters. Modifying this attribute will force creation of a new resource.
- custom
Ssl CustomPriorities Ssl Custom Ssl Priority[] - expires
On string - hosts string[]
- issuer string
- modified
On string - priority number
- signature string
- status string
- uploaded
On string - zone
Id string - The zone identifier to target for the resource.
- custom_
ssl_ Customoptions Ssl Custom Ssl Options Args - The certificate associated parameters. Modifying this attribute will force creation of a new resource.
- custom_
ssl_ Sequence[Custompriorities Ssl Custom Ssl Priority Args] - expires_
on str - hosts Sequence[str]
- issuer str
- modified_
on str - priority int
- signature str
- status str
- uploaded_
on str - zone_
id str - The zone identifier to target for the resource.
- custom
Ssl Property MapOptions - The certificate associated parameters. Modifying this attribute will force creation of a new resource.
- custom
Ssl List<Property Map>Priorities - expires
On String - hosts List<String>
- issuer String
- modified
On String - priority Number
- signature String
- status String
- uploaded
On String - zone
Id String - The zone identifier to target for the resource.
Supporting Types
CustomSslCustomSslOptions, CustomSslCustomSslOptionsArgs
- Bundle
Method string - Method of building intermediate certificate chain. A ubiquitous bundle has the highest probability of being verified everywhere, even by clients using outdated or unusual trust stores. An optimal bundle uses the shortest chain and newest intermediates. And the force bundle verifies the chain, but does not otherwise modify it. Available values:
ubiquitous
,optimal
,force
. - Certificate string
- Certificate certificate and the intermediate(s).
- Geo
Restrictions string - Specifies the region where your private key can be held locally. Available values:
us
,eu
,highest_security
. - Private
Key string - Certificate's private key.
- Type string
- Whether to enable support for legacy clients which do not include SNI in the TLS handshake. Available values:
legacy_custom
,sni_custom
.
- Bundle
Method string - Method of building intermediate certificate chain. A ubiquitous bundle has the highest probability of being verified everywhere, even by clients using outdated or unusual trust stores. An optimal bundle uses the shortest chain and newest intermediates. And the force bundle verifies the chain, but does not otherwise modify it. Available values:
ubiquitous
,optimal
,force
. - Certificate string
- Certificate certificate and the intermediate(s).
- Geo
Restrictions string - Specifies the region where your private key can be held locally. Available values:
us
,eu
,highest_security
. - Private
Key string - Certificate's private key.
- Type string
- Whether to enable support for legacy clients which do not include SNI in the TLS handshake. Available values:
legacy_custom
,sni_custom
.
- bundle
Method String - Method of building intermediate certificate chain. A ubiquitous bundle has the highest probability of being verified everywhere, even by clients using outdated or unusual trust stores. An optimal bundle uses the shortest chain and newest intermediates. And the force bundle verifies the chain, but does not otherwise modify it. Available values:
ubiquitous
,optimal
,force
. - certificate String
- Certificate certificate and the intermediate(s).
- geo
Restrictions String - Specifies the region where your private key can be held locally. Available values:
us
,eu
,highest_security
. - private
Key String - Certificate's private key.
- type String
- Whether to enable support for legacy clients which do not include SNI in the TLS handshake. Available values:
legacy_custom
,sni_custom
.
- bundle
Method string - Method of building intermediate certificate chain. A ubiquitous bundle has the highest probability of being verified everywhere, even by clients using outdated or unusual trust stores. An optimal bundle uses the shortest chain and newest intermediates. And the force bundle verifies the chain, but does not otherwise modify it. Available values:
ubiquitous
,optimal
,force
. - certificate string
- Certificate certificate and the intermediate(s).
- geo
Restrictions string - Specifies the region where your private key can be held locally. Available values:
us
,eu
,highest_security
. - private
Key string - Certificate's private key.
- type string
- Whether to enable support for legacy clients which do not include SNI in the TLS handshake. Available values:
legacy_custom
,sni_custom
.
- bundle_
method str - Method of building intermediate certificate chain. A ubiquitous bundle has the highest probability of being verified everywhere, even by clients using outdated or unusual trust stores. An optimal bundle uses the shortest chain and newest intermediates. And the force bundle verifies the chain, but does not otherwise modify it. Available values:
ubiquitous
,optimal
,force
. - certificate str
- Certificate certificate and the intermediate(s).
- geo_
restrictions str - Specifies the region where your private key can be held locally. Available values:
us
,eu
,highest_security
. - private_
key str - Certificate's private key.
- type str
- Whether to enable support for legacy clients which do not include SNI in the TLS handshake. Available values:
legacy_custom
,sni_custom
.
- bundle
Method String - Method of building intermediate certificate chain. A ubiquitous bundle has the highest probability of being verified everywhere, even by clients using outdated or unusual trust stores. An optimal bundle uses the shortest chain and newest intermediates. And the force bundle verifies the chain, but does not otherwise modify it. Available values:
ubiquitous
,optimal
,force
. - certificate String
- Certificate certificate and the intermediate(s).
- geo
Restrictions String - Specifies the region where your private key can be held locally. Available values:
us
,eu
,highest_security
. - private
Key String - Certificate's private key.
- type String
- Whether to enable support for legacy clients which do not include SNI in the TLS handshake. Available values:
legacy_custom
,sni_custom
.
CustomSslCustomSslPriority, CustomSslCustomSslPriorityArgs
Import
$ pulumi import cloudflare:index/customSsl:CustomSsl example <zone_id>/<certificate_id>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Cloudflare pulumi/pulumi-cloudflare
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
cloudflare
Terraform Provider.