Class: Aws::EKS::Types::ArgoCdConfigRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-eks/types.rb

Overview

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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#aws_idcTypes::ArgoCdAwsIdcConfigRequest

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



608
609
610
611
612
613
614
615
# File 'lib/aws-sdk-eks/types.rb', line 608

class ArgoCdConfigRequest < Struct.new(
  :namespace,
  :aws_idc,
  :rbac_role_mappings,
  :network_access)
  SENSITIVE = []
  include Aws::Structure
end

#namespaceString

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

Returns:

  • (String)


608
609
610
611
612
613
614
615
# File 'lib/aws-sdk-eks/types.rb', line 608

class ArgoCdConfigRequest < Struct.new(
  :namespace,
  :aws_idc,
  :rbac_role_mappings,
  :network_access)
  SENSITIVE = []
  include Aws::Structure
end

#network_accessTypes::ArgoCdNetworkAccessConfigRequest

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.



608
609
610
611
612
613
614
615
# File 'lib/aws-sdk-eks/types.rb', line 608

class ArgoCdConfigRequest < Struct.new(
  :namespace,
  :aws_idc,
  :rbac_role_mappings,
  :network_access)
  SENSITIVE = []
  include Aws::Structure
end

#rbac_role_mappingsArray<Types::ArgoCdRoleMapping>

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.

Returns:



608
609
610
611
612
613
614
615
# File 'lib/aws-sdk-eks/types.rb', line 608

class ArgoCdConfigRequest < Struct.new(
  :namespace,
  :aws_idc,
  :rbac_role_mappings,
  :network_access)
  SENSITIVE = []
  include Aws::Structure
end