Module Values.DnssecKeySource

Information about the DNSSEC key. You get this from your DNS provider and then give it to Route 53 (by using AssociateDelegationSignerToDomain) to pass it to the registry to establish the chain of trust.

Sourcetype nonrec t = {
  1. algorithm : NullableInteger.t option;
    (*

    The number of the public key’s cryptographic algorithm according to an IANA assignment. If Route 53 is your DNS service, set this to 13. For more information about enabling DNSSEC signing, see Enabling DNSSEC signing and establishing a chain of trust.

    *)
  2. flags : NullableInteger.t option;
    (*

    Defines the type of key. It can be either a KSK (key-signing-key, value 257) or ZSK (zone-signing-key, value 256). Using KSK is always encouraged. Only use ZSK if your DNS provider isn't Route 53 and you don’t have KSK available. If you have KSK and ZSK keys, always use KSK to create a delegations signer (DS) record. If you have ZSK keys only – use ZSK to create a DS record.

    *)
  3. publicKey : DnssecPublicKey.t option;
    (*

    The base64-encoded public key part of the key pair that is passed to the registry .

    *)
  4. digestType : NullableInteger.t option;
    (*

    The number of the DS digest algorithm according to an IANA assignment. For more information, see IANA for DNSSEC Delegation Signer (DS) Resource Record (RR) Type Digest Algorithms.

    *)
  5. digest : String_.t option;
    (*

    The delegation signer digest. Digest is calculated from the public key provided using specified digest algorithm and this digest is the actual value returned from the registry nameservers as the value of DS records.

    *)
  6. keyTag : NullableInteger.t option;
    (*

    A numeric identification of the DNSKEY record referred to by this DS record.

    *)
  7. id : String_.t option;
    (*

    An ID assigned to each DS record created by AssociateDelegationSignerToDomain.

    *)
}
Sourceval make : ?algorithm:??? -> ?flags:??? -> ?publicKey:??? -> ?digestType:??? -> ?digest:??? -> ?keyTag:??? -> ?id:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of NullableInteger.t | `String of DnssecPublicKey.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t