LogoLogo
Metadata for Integration Config
Metadata for Integration Config
  • INTEGRATION METADATA
    • Amazon Account
    • AWS EC2 SSH
    • Elastic Kubernetes Service (EKS)
    • AWS Lambda Custom Integration
    • Amazon Organization
    • AWS RDS MySQL
    • AWS RDS PostgreSQL
    • Amazon RDS
    • Entra ID (Azure AD) Groups
    • Azure Kubernetes Service (AKS)
    • Azure Management Group
    • Azure MySQL
    • Azure PostgreSQL
    • Azure Subscription
    • Azure VM SSH
    • Cloud Function Custom Integration
    • F5 Network
    • Google AlloyDB
    • Google BigQuery
    • Google Cloud SQL - MySQL
    • Google Cloud SQL - PostgreSQL
    • Google Kubernetes Engine (GKE)
    • Google Organization
    • Google Project
    • Github
    • JumpCloud
    • Kubernetes Proxy
    • Kubernetes
    • LDAP Group
    • MariaDB
    • Mongo Atlas Portal
    • MongoDB Atlas
    • MongoDB
    • Microsoft SQL Server
    • MySQL
    • Okta Group
    • OneLogin Group
    • 1Password
    • OpenSearch
    • OpenVPN
    • Oracle Database
    • PostgreSQL
    • RabbitMQ
    • Rancher
    • RDP
    • Redis Cloud (Redislabs)
    • Amazon Redshift
    • Snowflake
    • SSH
    • Vertica Database
    • Web App
    • Windows Domain Controller
Powered by GitBook
On this page
  • Example Usage
  • Schema
  • Integration Config

Was this helpful?

Export as PDF
  1. INTEGRATION METADATA

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"
  }
}
gcp-gke-integration.tf
resource "apono_resource_integration" "gcp-gke-integration" {
  name                     = "Google Kubernetes Engine (GKE)"
  type                     = "gcp-gke"
  connector_id             = "apono-connector-id"
  connected_resource_types = ["gcp-gke-cluster"]
  integration_config = {
    server_url = "<Server URL>"
    certificate_authority = "<Certificate Authority>"
    project_id = "<Project ID>"
    region = "<Region>"
    cluster_name = "<Cluster Name>"
  }
  secret_store_config = {
    gcp = {
      project    = "project_template_value"
      secret_id  = "gcp_secret_id_template_value"
    }
}
gcp-gke-integration.json
{
    "gcp-gke-integration": {
        "name": "Google Kubernetes Engine (GKE)",
        "type": "gcp-gke",
        "connector_id": "apono-connector-id",
        "connected_resource_types": [
            "gcp-gke-cluster"
        ],
        "integration_config": {
            "server_url": "<Server URL>",
            "certificate_authority": "<Certificate Authority>",
            "project_id": "<Project ID>",
            "region": "<Region>",
            "cluster_name": "<Cluster Name>",
        },
	"secret_store_config": {
    	    "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

PreviousGoogle Cloud SQL - PostgreSQLNextGoogle Organization

Last updated 22 days ago

Was this helpful?