Azure Kubernetes Service (AKS)

Kubernetes is an open-source container orchestration system for automating software deployment, scaling, and management.

Example Terraform Resource Usage


resource "apono_integration" "azure-aks-integration" {
  name                     = "Azure Kubernetes Service (AKS)"
  type                     = "azure-aks"
  connector_id             = "apono-connector-id"
  connected_resource_types = ["resource-type-1", "resource-type-2"]
  metadata = {
    server_url = "<Server URL>"
    certificate_authority = "<Certificate Authority>"
    resource_group = "<Resource Group>"
    cluster_name = "<Cluster Name>"
    subscription_id = "<Subscription ID>"
  }
}

Schema


  • type azure-aks

  • connected_resource_types List of resource types to sync. The following are the available resource type/s you can use:

    • azure-aks-cluster

    • azure-aks-namespace

    • azure-aks-secret

    • azure-aks-configmap

    • azure-aks-deployment

    • azure-aks-statefulset

    • azure-aks-pod

Metadata

  • server_url (Optional | String) Server URL

  • certificate_authority (Optional | String) Certificate Authority

  • resource_group (Optional | String) Resource Group

  • cluster_name (Optional | String) Cluster Name

  • subscription_id (Optional | String) Subscription ID

Last updated