Google Kubernetes Engine (GKE)

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

Example Usage


gcp-gke-integration.tf
resource "apono_integration" "gcp-gke-integration" {
  name                     = "Google Kubernetes Engine (GKE)"
  type                     = "gcp-gke"
  connector_id             = "apono-connector-id"
  connected_resource_types = ["gcp-gke-cluster"]
  metadata = {
    server_url = "<Server URL>"
    certificate_authority = "<Certificate Authority>"
    project_id = "<Project ID>"
    region = "<Region>"
    cluster_name = "<Cluster Name>"
  }
  gcp_secret = {
    project    = "project_template_value"
    secret_id  = "gcp_secret_id_template_value"
  }
}

Schema


  • type gcp-gke

  • connected_resource_types List of resource types to sync.

Available resource types you can use
  • gcp-gke-cluster

  • gcp-gke-namespace

  • gcp-gke-secret

  • gcp-gke-configmap

  • gcp-gke-deployment

  • gcp-gke-statefulset

  • gcp-gke-ingress

  • gcp-gke-cronjob

  • gcp-gke-job

Integration Config


  • server_url (Optional | String) Server URL

  • certificate_authority (Optional | String) Certificate Authority

  • project_id (Optional | String) Project ID

  • region (Optional | String) Region

  • cluster_name (Optional | String) Cluster Name

Last updated

Was this helpful?