Module Values.ArgoCdConfigRequestSource

Configuration settings for an Argo CD capability. This includes the Kubernetes namespace, IAM Identity CenterIAM; Identity Center integration, RBAC role mappings, and network access configuration.

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

    The Kubernetes namespace where Argo CD resources will be created. If not specified, the default namespace is used.

    *)
  2. awsIdc : ArgoCdAwsIdcConfigRequest.t;
    (*

    Configuration for IAM Identity CenterIAM; Identity Center integration. When configured, users can authenticate to Argo CD using their IAM Identity CenterIAM; Identity Center credentials.

    *)
  3. rbacRoleMappings : ArgoCdRoleMappingList.t option;
    (*

    A list of role mappings that define which IAM Identity CenterIAM; Identity Center users or groups have which Argo CD roles. Each mapping associates an Argo CD role (ADMIN, EDITOR, or VIEWER) with one or more IAM Identity CenterIAM; Identity Center identities.

    *)
  4. networkAccess : ArgoCdNetworkAccessConfigRequest.t option;
    (*

    Configuration for network access to the Argo CD capability's managed API server endpoint. By default, the Argo CD server is accessible via a public endpoint. You can optionally specify one or more VPC endpoint IDs to enable private connectivity from your VPCs. When VPC endpoints are configured, public access is blocked and the Argo CD server is only accessible through the specified VPC endpoints.

    *)
}
Sourceval context_ : string
Sourceval make : ?namespace:??? -> ?rbacRoleMappings:??? -> ?networkAccess:??? -> awsIdc:ArgoCdAwsIdcConfigRequest.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of String_.t ]) list ] list ]) list ] list | `String of String_.t | `Structure of (string * [> `List of [> `String of String_.t ] list | `String of String_.t ]) list ]) 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