oci_dns_zone_stage_dnssec_key_version

This resource provides the Zone Stage Dnssec Key Version resource in Oracle Cloud Infrastructure DNS service. Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/dns/latest/ZoneStageDnssecKeyVersion

Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/dns

Stages a new DnssecKeyVersion on the zone. Staging is a process that generates a new “successor” key version that replaces an existing “predecessor” key version. Note: A new key-signing key (KSK) version is inert until you update the parent zone DS records.

For more information, see the DNSSEC documentation.

Example Usage

resource "oci_dns_zone_stage_dnssec_key_version" "test_zone_stage_dnssec_key_version" {
	#Required
	predecessor_dnssec_key_version_uuid = var.zone_stage_dnssec_key_version_predecessor_dnssec_key_version_uuid
	zone_id = oci_dns_zone.test_zone.id

	#Optional
	scope = var.zone_stage_dnssec_key_version_scope
}

Argument Reference

The following arguments are supported:

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

Attributes Reference

The following attributes are exported:

Timeouts

The timeouts block allows you to specify timeouts for certain operations: * create - (Defaults to 20 minutes), when creating the Zone Stage Dnssec Key Version * update - (Defaults to 20 minutes), when updating the Zone Stage Dnssec Key Version * delete - (Defaults to 20 minutes), when destroying the Zone Stage Dnssec Key Version

Import

Import is not supported for this resource.