Elastic Kubernetes Service (EKS)
Kubernetes is an open-source container orchestration system for automating software deployment, scaling, and management.
Example Usage
resource "apono_integration" "aws-eks-integration" {
name = "Elastic Kubernetes Service (EKS)"
type = "aws-eks"
connector_id = "apono-connector-id"
connected_resource_types = ["aws-eks-cluster"]
metadata = {
server_url = "<Server URL>"
certificate_authority = "<Certificate Authority>"
cluster_name = "<EKS Cluster Name>"
aws_role_name = "<AWS Role Name>"
region = "<Region>"
eks_identity_mapping_type = "<Identity Mapping Type>"
}
aws_secret = {
region = "aws_region_template_value"
secret_id = "aws_secret_id_template_value"
}
}resource "apono_resource_integration" "aws-eks-integration" {
name = "Elastic Kubernetes Service (EKS)"
type = "aws-eks"
connector_id = "apono-connector-id"
connected_resource_types = ["aws-eks-cluster"]
integration_config = {
server_url = "<Server URL>"
certificate_authority = "<Certificate Authority>"
cluster_name = "<EKS Cluster Name>"
aws_role_name = "<AWS Role Name>"
region = "<Region>"
eks_identity_mapping_type = "<Identity Mapping Type>"
}
secret_store_config = {
aws = {
region = "aws_region_template_value"
secret_id = "aws_secret_id_template_value"
}
}Schema
Integration Config
Last updated
Was this helpful?
