Viewing docs for Cloudflare v6.18.0
published on Thursday, Jul 16, 2026 by Pulumi
published on Thursday, Jul 16, 2026 by Pulumi
Viewing docs for Cloudflare v6.18.0
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 exampleOriginTlsComplianceModes = cloudflare.getOriginTlsComplianceModes({
zoneId: "023e105f4ecef8ad9ca31a8372d0c353",
});
import pulumi
import pulumi_cloudflare as cloudflare
example_origin_tls_compliance_modes = cloudflare.get_origin_tls_compliance_modes(zone_id="023e105f4ecef8ad9ca31a8372d0c353")
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.GetOriginTlsComplianceModes(ctx, &cloudflare.LookupOriginTlsComplianceModesArgs{
ZoneId: "023e105f4ecef8ad9ca31a8372d0c353",
}, nil)
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 exampleOriginTlsComplianceModes = Cloudflare.GetOriginTlsComplianceModes.Invoke(new()
{
ZoneId = "023e105f4ecef8ad9ca31a8372d0c353",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.cloudflare.CloudflareFunctions;
import com.pulumi.cloudflare.inputs.GetOriginTlsComplianceModesArgs;
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) {
final var exampleOriginTlsComplianceModes = CloudflareFunctions.getOriginTlsComplianceModes(GetOriginTlsComplianceModesArgs.builder()
.zoneId("023e105f4ecef8ad9ca31a8372d0c353")
.build());
}
}
variables:
exampleOriginTlsComplianceModes:
fn::invoke:
function: cloudflare:getOriginTlsComplianceModes
arguments:
zoneId: 023e105f4ecef8ad9ca31a8372d0c353
pulumi {
required_providers {
cloudflare = {
source = "pulumi/cloudflare"
}
}
}
data "cloudflare_getorigintlscompliancemodes" "exampleOriginTlsComplianceModes" {
zone_id = "023e105f4ecef8ad9ca31a8372d0c353"
}
Using getOriginTlsComplianceModes
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getOriginTlsComplianceModes(args: GetOriginTlsComplianceModesArgs, opts?: InvokeOptions): Promise<GetOriginTlsComplianceModesResult>
function getOriginTlsComplianceModesOutput(args: GetOriginTlsComplianceModesOutputArgs, opts?: InvokeOptions): Output<GetOriginTlsComplianceModesResult>def get_origin_tls_compliance_modes(zone_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetOriginTlsComplianceModesResult
def get_origin_tls_compliance_modes_output(zone_id: pulumi.Input[Optional[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetOriginTlsComplianceModesResult]func LookupOriginTlsComplianceModes(ctx *Context, args *LookupOriginTlsComplianceModesArgs, opts ...InvokeOption) (*LookupOriginTlsComplianceModesResult, error)
func LookupOriginTlsComplianceModesOutput(ctx *Context, args *LookupOriginTlsComplianceModesOutputArgs, opts ...InvokeOption) LookupOriginTlsComplianceModesResultOutput> Note: This function is named LookupOriginTlsComplianceModes in the Go SDK.
public static class GetOriginTlsComplianceModes
{
public static Task<GetOriginTlsComplianceModesResult> InvokeAsync(GetOriginTlsComplianceModesArgs args, InvokeOptions? opts = null)
public static Output<GetOriginTlsComplianceModesResult> Invoke(GetOriginTlsComplianceModesInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetOriginTlsComplianceModesResult> getOriginTlsComplianceModes(GetOriginTlsComplianceModesArgs args, InvokeOptions options)
public static Output<GetOriginTlsComplianceModesResult> getOriginTlsComplianceModes(GetOriginTlsComplianceModesArgs args, InvokeOptions options)
fn::invoke:
function: cloudflare:index/getOriginTlsComplianceModes:getOriginTlsComplianceModes
arguments:
# arguments dictionarydata "cloudflare_get_origin_tls_compliance_modes" "name" {
# arguments
}The following arguments are supported:
- Zone
Id string - Identifier.
- Zone
Id string - Identifier.
- zone_
id string - Identifier.
- zone
Id String - Identifier.
- zone
Id string - Identifier.
- zone_
id str - Identifier.
- zone
Id String - Identifier.
getOriginTlsComplianceModes Result
The following output properties are available:
- Editable bool
- Whether the setting is editable.
- Id string
- Identifier.
- Modified
On string - Last time this setting was modified.
- Values List<string>
- List of TLS compliance modes that constrain the key-exchange algorithms Cloudflare may use when establishing the TLS connection to the zone's origin. Currently supported values are
fips(FIPS-approved curves) andpqh(post-quantum hybrid). Future modes (e.g.cnsa2) may be added; clients should treat unknown values as opaque strings. Multiple modes are combined as the intersection of their permitted algorithm lists; selections whose intersection is empty are rejected. An empty list clears the constraint. - Zone
Id string - Identifier.
- Editable bool
- Whether the setting is editable.
- Id string
- Identifier.
- Modified
On string - Last time this setting was modified.
- Values []string
- List of TLS compliance modes that constrain the key-exchange algorithms Cloudflare may use when establishing the TLS connection to the zone's origin. Currently supported values are
fips(FIPS-approved curves) andpqh(post-quantum hybrid). Future modes (e.g.cnsa2) may be added; clients should treat unknown values as opaque strings. Multiple modes are combined as the intersection of their permitted algorithm lists; selections whose intersection is empty are rejected. An empty list clears the constraint. - Zone
Id string - Identifier.
- editable bool
- Whether the setting is editable.
- id string
- Identifier.
- modified_
on string - Last time this setting was modified.
- values list(string)
- List of TLS compliance modes that constrain the key-exchange algorithms Cloudflare may use when establishing the TLS connection to the zone's origin. Currently supported values are
fips(FIPS-approved curves) andpqh(post-quantum hybrid). Future modes (e.g.cnsa2) may be added; clients should treat unknown values as opaque strings. Multiple modes are combined as the intersection of their permitted algorithm lists; selections whose intersection is empty are rejected. An empty list clears the constraint. - zone_
id string - Identifier.
- editable Boolean
- Whether the setting is editable.
- id String
- Identifier.
- modified
On String - Last time this setting was modified.
- values List<String>
- List of TLS compliance modes that constrain the key-exchange algorithms Cloudflare may use when establishing the TLS connection to the zone's origin. Currently supported values are
fips(FIPS-approved curves) andpqh(post-quantum hybrid). Future modes (e.g.cnsa2) may be added; clients should treat unknown values as opaque strings. Multiple modes are combined as the intersection of their permitted algorithm lists; selections whose intersection is empty are rejected. An empty list clears the constraint. - zone
Id String - Identifier.
- editable boolean
- Whether the setting is editable.
- id string
- Identifier.
- modified
On string - Last time this setting was modified.
- values string[]
- List of TLS compliance modes that constrain the key-exchange algorithms Cloudflare may use when establishing the TLS connection to the zone's origin. Currently supported values are
fips(FIPS-approved curves) andpqh(post-quantum hybrid). Future modes (e.g.cnsa2) may be added; clients should treat unknown values as opaque strings. Multiple modes are combined as the intersection of their permitted algorithm lists; selections whose intersection is empty are rejected. An empty list clears the constraint. - zone
Id string - Identifier.
- editable bool
- Whether the setting is editable.
- id str
- Identifier.
- modified_
on str - Last time this setting was modified.
- values Sequence[str]
- List of TLS compliance modes that constrain the key-exchange algorithms Cloudflare may use when establishing the TLS connection to the zone's origin. Currently supported values are
fips(FIPS-approved curves) andpqh(post-quantum hybrid). Future modes (e.g.cnsa2) may be added; clients should treat unknown values as opaque strings. Multiple modes are combined as the intersection of their permitted algorithm lists; selections whose intersection is empty are rejected. An empty list clears the constraint. - zone_
id str - Identifier.
- editable Boolean
- Whether the setting is editable.
- id String
- Identifier.
- modified
On String - Last time this setting was modified.
- values List<String>
- List of TLS compliance modes that constrain the key-exchange algorithms Cloudflare may use when establishing the TLS connection to the zone's origin. Currently supported values are
fips(FIPS-approved curves) andpqh(post-quantum hybrid). Future modes (e.g.cnsa2) may be added; clients should treat unknown values as opaque strings. Multiple modes are combined as the intersection of their permitted algorithm lists; selections whose intersection is empty are rejected. An empty list clears the constraint. - zone
Id String - Identifier.
Package Details
- Repository
- Cloudflare pulumi/pulumi-cloudflare
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
cloudflareTerraform Provider.
Viewing docs for Cloudflare v6.18.0
published on Thursday, Jul 16, 2026 by Pulumi
published on Thursday, Jul 16, 2026 by Pulumi