Module Values.EksSecretSource

Specifies the configuration of a Kubernetes secret volume. For more information, see secret in the Kubernetes documentation.

Sourcetype nonrec t = {
  1. secretName : String_.t;
    (*

    The name of the secret. The name must be allowed as a DNS subdomain name. For more information, see DNS subdomain names in the Kubernetes documentation.

    *)
  2. optional : Boolean.t option;
    (*

    Specifies whether the secret or the secret's keys must be defined.

    *)
}
Sourceval context_ : string
Sourceval make : ?optional:??? -> secretName:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of String_.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