HostnameTlsSetting

class HostnameTlsSetting : KotlinCustomResource

Provides a Cloudflare per-hostname TLS setting resource. Used to set TLS settings 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.HostnameTlsSetting;
import com.pulumi.cloudflare.HostnameTlsSettingArgs;
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 HostnameTlsSetting("example", HostnameTlsSettingArgs.builder()
.hostname("sub.example.com")
.setting("min_tls_version")
.value("1.2")
.zoneId("0da42c8d2132a9ddaf714f9e7c920711")
.build());
}
}

Import

$ pulumi import cloudflare:index/hostnameTlsSetting:HostnameTlsSetting example <zone_id>/<hostname>/<setting_name>

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 pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val setting: Output<String>

TLS setting name. Modifying this attribute will force creation of a new resource.

Link copied to clipboard
val updatedAt: Output<String>
Link copied to clipboard
val urn: Output<String>
Link copied to clipboard
val value: Output<String>

TLS setting 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.