published on Thursday, Jul 16, 2026 by Pulumi
published on Thursday, Jul 16, 2026 by Pulumi
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as cloudflare from "@pulumi/cloudflare";
const exampleZoneAutoOriginTlsKex = new cloudflare.ZoneAutoOriginTlsKex("example_zone_auto_origin_tls_kex", {
zoneId: "023e105f4ecef8ad9ca31a8372d0c353",
enabled: true,
});
import pulumi
import pulumi_cloudflare as cloudflare
example_zone_auto_origin_tls_kex = cloudflare.ZoneAutoOriginTlsKex("example_zone_auto_origin_tls_kex",
zone_id="023e105f4ecef8ad9ca31a8372d0c353",
enabled=True)
package main
import (
"github.com/pulumi/pulumi-cloudflare/sdk/v6/go/cloudflare"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := cloudflare.NewZoneAutoOriginTlsKex(ctx, "example_zone_auto_origin_tls_kex", &cloudflare.ZoneAutoOriginTlsKexArgs{
ZoneId: pulumi.String("023e105f4ecef8ad9ca31a8372d0c353"),
Enabled: pulumi.Bool(true),
})
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 exampleZoneAutoOriginTlsKex = new Cloudflare.ZoneAutoOriginTlsKex("example_zone_auto_origin_tls_kex", new()
{
ZoneId = "023e105f4ecef8ad9ca31a8372d0c353",
Enabled = true,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.cloudflare.ZoneAutoOriginTlsKex;
import com.pulumi.cloudflare.ZoneAutoOriginTlsKexArgs;
import java.util.ArrayList;
import java.util.Arrays;
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 exampleZoneAutoOriginTlsKex = new ZoneAutoOriginTlsKex("exampleZoneAutoOriginTlsKex", ZoneAutoOriginTlsKexArgs.builder()
.zoneId("023e105f4ecef8ad9ca31a8372d0c353")
.enabled(true)
.build());
}
}
resources:
exampleZoneAutoOriginTlsKex:
type: cloudflare:ZoneAutoOriginTlsKex
name: example_zone_auto_origin_tls_kex
properties:
zoneId: 023e105f4ecef8ad9ca31a8372d0c353
enabled: true
pulumi {
required_providers {
cloudflare = {
source = "pulumi/cloudflare"
}
}
}
resource "cloudflare_zoneautoorigintlskex" "example_zone_auto_origin_tls_kex" {
zone_id = "023e105f4ecef8ad9ca31a8372d0c353"
enabled = true
}
Create ZoneAutoOriginTlsKex Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ZoneAutoOriginTlsKex(name: string, args: ZoneAutoOriginTlsKexArgs, opts?: CustomResourceOptions);@overload
def ZoneAutoOriginTlsKex(resource_name: str,
args: ZoneAutoOriginTlsKexArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ZoneAutoOriginTlsKex(resource_name: str,
opts: Optional[ResourceOptions] = None,
enabled: Optional[bool] = None,
zone_id: Optional[str] = None)func NewZoneAutoOriginTlsKex(ctx *Context, name string, args ZoneAutoOriginTlsKexArgs, opts ...ResourceOption) (*ZoneAutoOriginTlsKex, error)public ZoneAutoOriginTlsKex(string name, ZoneAutoOriginTlsKexArgs args, CustomResourceOptions? opts = null)
public ZoneAutoOriginTlsKex(String name, ZoneAutoOriginTlsKexArgs args)
public ZoneAutoOriginTlsKex(String name, ZoneAutoOriginTlsKexArgs args, CustomResourceOptions options)
type: cloudflare:ZoneAutoOriginTlsKex
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "cloudflare_zone_auto_origin_tls_kex" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args ZoneAutoOriginTlsKexArgs
- 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 ZoneAutoOriginTlsKexArgs
- 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 ZoneAutoOriginTlsKexArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ZoneAutoOriginTlsKexArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ZoneAutoOriginTlsKexArgs
- 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 zoneAutoOriginTlsKexResource = new Cloudflare.ZoneAutoOriginTlsKex("zoneAutoOriginTlsKexResource", new()
{
Enabled = false,
ZoneId = "string",
});
example, err := cloudflare.NewZoneAutoOriginTlsKex(ctx, "zoneAutoOriginTlsKexResource", &cloudflare.ZoneAutoOriginTlsKexArgs{
Enabled: pulumi.Bool(false),
ZoneId: pulumi.String("string"),
})
resource "cloudflare_zone_auto_origin_tls_kex" "zoneAutoOriginTlsKexResource" {
lifecycle {
create_before_destroy = true
}
enabled = false
zone_id = "string"
}
var zoneAutoOriginTlsKexResource = new ZoneAutoOriginTlsKex("zoneAutoOriginTlsKexResource", ZoneAutoOriginTlsKexArgs.builder()
.enabled(false)
.zoneId("string")
.build());
zone_auto_origin_tls_kex_resource = cloudflare.ZoneAutoOriginTlsKex("zoneAutoOriginTlsKexResource",
enabled=False,
zone_id="string")
const zoneAutoOriginTlsKexResource = new cloudflare.ZoneAutoOriginTlsKex("zoneAutoOriginTlsKexResource", {
enabled: false,
zoneId: "string",
});
type: cloudflare:ZoneAutoOriginTlsKex
properties:
enabled: false
zoneId: string
ZoneAutoOriginTlsKex 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 ZoneAutoOriginTlsKex resource accepts the following input properties:
Outputs
All input properties are implicitly available as output properties. Additionally, the ZoneAutoOriginTlsKex resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Modified
On string - Last time this setting was modified.
- Id string
- The provider-assigned unique ID for this managed resource.
- Modified
On string - Last time this setting was modified.
- id string
- The provider-assigned unique ID for this managed resource.
- modified_
on string - Last time this setting was modified.
- id String
- The provider-assigned unique ID for this managed resource.
- modified
On String - Last time this setting was modified.
- id string
- The provider-assigned unique ID for this managed resource.
- modified
On string - Last time this setting was modified.
- id str
- The provider-assigned unique ID for this managed resource.
- modified_
on str - Last time this setting was modified.
- id String
- The provider-assigned unique ID for this managed resource.
- modified
On String - Last time this setting was modified.
Look up Existing ZoneAutoOriginTlsKex Resource
Get an existing ZoneAutoOriginTlsKex 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?: ZoneAutoOriginTlsKexState, opts?: CustomResourceOptions): ZoneAutoOriginTlsKex@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
enabled: Optional[bool] = None,
modified_on: Optional[str] = None,
zone_id: Optional[str] = None) -> ZoneAutoOriginTlsKexfunc GetZoneAutoOriginTlsKex(ctx *Context, name string, id IDInput, state *ZoneAutoOriginTlsKexState, opts ...ResourceOption) (*ZoneAutoOriginTlsKex, error)public static ZoneAutoOriginTlsKex Get(string name, Input<string> id, ZoneAutoOriginTlsKexState? state, CustomResourceOptions? opts = null)public static ZoneAutoOriginTlsKex get(String name, Output<String> id, ZoneAutoOriginTlsKexState state, CustomResourceOptions options)resources: _: type: cloudflare:ZoneAutoOriginTlsKex get: id: ${id}import {
to = cloudflare_zone_auto_origin_tls_kex.example
id = "${id}"
}
- 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.
- Enabled bool
- Controls enablement of Auto-Origin TLS KEX selection for the zone.
- Modified
On string - Last time this setting was modified.
- Zone
Id string
- Enabled bool
- Controls enablement of Auto-Origin TLS KEX selection for the zone.
- Modified
On string - Last time this setting was modified.
- Zone
Id string
- enabled bool
- Controls enablement of Auto-Origin TLS KEX selection for the zone.
- modified_
on string - Last time this setting was modified.
- zone_
id string
- enabled Boolean
- Controls enablement of Auto-Origin TLS KEX selection for the zone.
- modified
On String - Last time this setting was modified.
- zone
Id String
- enabled boolean
- Controls enablement of Auto-Origin TLS KEX selection for the zone.
- modified
On string - Last time this setting was modified.
- zone
Id string
- enabled bool
- Controls enablement of Auto-Origin TLS KEX selection for the zone.
- modified_
on str - Last time this setting was modified.
- zone_
id str
- enabled Boolean
- Controls enablement of Auto-Origin TLS KEX selection for the zone.
- modified
On String - Last time this setting was modified.
- zone
Id String
Import
$ pulumi import cloudflare:index/zoneAutoOriginTlsKex:ZoneAutoOriginTlsKex example '<zone_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
cloudflareTerraform Provider.
published on Thursday, Jul 16, 2026 by Pulumi