HostnameTlsSettingCiphers

class HostnameTlsSettingCiphers : KotlinCustomResource

Provides a Cloudflare per-hostname TLS setting resource, specifically for ciphers suites. Used to set ciphers suites for hostnames under the specified zone.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as cloudflare from "@pulumi/cloudflare";
const example = new cloudflare.HostnameTlsSettingCiphers("example", {
zoneId: "0da42c8d2132a9ddaf714f9e7c920711",
hostname: "sub.example.com",
values: ["ECDHE-RSA-AES128-GCM-SHA256"],
});
import pulumi
import pulumi_cloudflare as cloudflare
example = cloudflare.HostnameTlsSettingCiphers("example",
zone_id="0da42c8d2132a9ddaf714f9e7c920711",
hostname="sub.example.com",
values=["ECDHE-RSA-AES128-GCM-SHA256"])
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Cloudflare = Pulumi.Cloudflare;
return await Deployment.RunAsync(() =>
{
var example = new Cloudflare.HostnameTlsSettingCiphers("example", new()
{
ZoneId = "0da42c8d2132a9ddaf714f9e7c920711",
Hostname = "sub.example.com",
Values = new[]
{
"ECDHE-RSA-AES128-GCM-SHA256",
},
});
});
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.NewHostnameTlsSettingCiphers(ctx, "example", &cloudflare.HostnameTlsSettingCiphersArgs{
ZoneId: pulumi.String("0da42c8d2132a9ddaf714f9e7c920711"),
Hostname: pulumi.String("sub.example.com"),
Values: pulumi.StringArray{
pulumi.String("ECDHE-RSA-AES128-GCM-SHA256"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.cloudflare.HostnameTlsSettingCiphers;
import com.pulumi.cloudflare.HostnameTlsSettingCiphersArgs;
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 HostnameTlsSettingCiphers("example", HostnameTlsSettingCiphersArgs.builder()
.zoneId("0da42c8d2132a9ddaf714f9e7c920711")
.hostname("sub.example.com")
.values("ECDHE-RSA-AES128-GCM-SHA256")
.build());
}
}
resources:
example:
type: cloudflare:HostnameTlsSettingCiphers
properties:
zoneId: 0da42c8d2132a9ddaf714f9e7c920711
hostname: sub.example.com
values:
- ECDHE-RSA-AES128-GCM-SHA256

Import

$ pulumi import cloudflare:index/hostnameTlsSettingCiphers:HostnameTlsSettingCiphers example <zone_id>/<hostname>

Properties

Link copied to clipboard
val createdAt: Output<String>
Link copied to clipboard
val hostname: Output<String>

Hostname that belongs to this zone name. Modifying this attribute will force creation of a new resource.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val ports: Output<List<Int>>?

Ports to use within the IP rule.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val updatedAt: Output<String>
Link copied to clipboard
val urn: Output<String>
Link copied to clipboard
val values: Output<List<String>>

Ciphers suites value.

Link copied to clipboard
val zoneId: Output<String>

The zone identifier to target for the resource. Modifying this attribute will force creation of a new resource.