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>"
}
}resource "apono_resource_integration" "azure-aks-integration" {
name = "Azure Kubernetes Service (AKS)"
type = "azure-aks"
connector_id = "apono-connector-id"
connected_resource_types = ["azure-aks-cluster"]
integration_config = {
server_url = "<Server URL>"
certificate_authority = "<Certificate Authority>"
resource_group = "<Resource Group>"
cluster_name = "<Cluster Name>"
subscription_id = "<Subscription ID>"
}
secret_store_config = {
azure = {
vault_url = "vault_url_template_value"
name = "name_template_value"
}
}Schema
typeazure-aksconnected_resource_typesList 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?
