Google Kubernetes Engine (GKE)

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

Example Terraform Resource Usage


resource "apono_integration" "gcp-gke-integration" {
  name                     = "Google Kubernetes Engine (GKE)"
  type                     = "gcp-gke"
  connector_id             = "apono-connector-id"
  connected_resource_types = ["resource-type-1", "resource-type-2"]
  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. The following are the available resource type/s you can use:

    • gcp-gke-cluster

    • gcp-gke-namespace

    • gcp-gke-secret

    • gcp-gke-configmap

    • gcp-gke-deployment

    • gcp-gke-statefulset

    • gcp-gke-pod

Metadata

  • 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