HostnameTlsSettingCiphersArgs

data class HostnameTlsSettingCiphersArgs(val hostname: Output<String>? = null, val ports: Output<List<Int>>? = null, val values: Output<List<String>>? = null, val zoneId: Output<String>? = null) : ConvertibleToJava<HostnameTlsSettingCiphersArgs>

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

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()
.hostname("sub.example.com")
.values("ECDHE-RSA-AES128-GCM-SHA256")
.zoneId("0da42c8d2132a9ddaf714f9e7c920711")
.build());
}
}

Import

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

Constructors

Link copied to clipboard
fun HostnameTlsSettingCiphersArgs(hostname: Output<String>? = null, ports: Output<List<Int>>? = null, values: Output<List<String>>? = null, zoneId: Output<String>? = null)

Functions

Link copied to clipboard
open override fun toJava(): HostnameTlsSettingCiphersArgs

Properties

Link copied to clipboard
val hostname: Output<String>? = null

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

Link copied to clipboard
val ports: Output<List<Int>>? = null

Ports to use within the IP rule.

Link copied to clipboard
val values: Output<List<String>>? = null

Ciphers suites value.

Link copied to clipboard
val zoneId: Output<String>? = null

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