Azure Kubernetes Service (AKS)
Kubernetes is an open-source container orchestration system for automating software deployment, scaling, and management.
Example Usage
resource "apono_integration" "azure-aks-integration" {
name = "Azure Kubernetes Service (AKS)"
type = "azure-aks"
connector_id = "apono-connector-id"
connected_resource_types = ["azure-aks-cluster"]
metadata = {
server_url = "<Server URL>"
certificate_authority = "<Certificate Authority>"
resource_group = "<Resource Group>"
cluster_name = "<Cluster Name>"
subscription_id = "<Subscription ID>"
}
}
Schema
type
azure-aksconnected_resource_types
List of resource types to sync.
Integration Config
server_url
(Optional | String) Server URLcertificate_authority
(Optional | String) Certificate Authorityresource_group
(Optional | String) Resource Groupcluster_name
(Optional | String) Cluster Namesubscription_id
(Optional | String) Subscription ID
Last updated
Was this helpful?