ZoneDnssec

class ZoneDnssec : KotlinCustomResource

Provides a Cloudflare resource to create and modify zone DNSSEC settings.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.cloudflare.Zone;
import com.pulumi.cloudflare.ZoneArgs;
import com.pulumi.cloudflare.ZoneDnssec;
import com.pulumi.cloudflare.ZoneDnssecArgs;
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 exampleZone = new Zone("exampleZone", ZoneArgs.builder()
.zone("example.com")
.build());
var exampleZoneDnssec = new ZoneDnssec("exampleZoneDnssec", ZoneDnssecArgs.builder()
.zoneId(exampleZone.id())
.build());
}
}

Import

$ pulumi import cloudflare:index/zoneDnssec:ZoneDnssec example <zone_id>

Properties

Link copied to clipboard
val algorithm: Output<String>

Zone DNSSEC algorithm.

Link copied to clipboard
val digest: Output<String>

Zone DNSSEC digest.

Link copied to clipboard
val digestAlgorithm: Output<String>

Digest algorithm use for Zone DNSSEC.

Link copied to clipboard
val digestType: Output<String>

Digest Type for Zone DNSSEC.

Link copied to clipboard
val ds: Output<String>

DS for the Zone DNSSEC.

Link copied to clipboard
val flags: Output<Int>

Zone DNSSEC flags.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val keyTag: Output<Int>

Key Tag for the Zone DNSSEC.

Link copied to clipboard
val keyType: Output<String>

Key type used for Zone DNSSEC.

Link copied to clipboard
val modifiedOn: Output<String>

Zone DNSSEC updated time.

Link copied to clipboard
val publicKey: Output<String>

Public Key for the Zone DNSSEC.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val status: Output<String>

The status of the Zone DNSSEC.

Link copied to clipboard
val urn: Output<String>
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.