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
    • 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 Project

Google Project

Example Usage


gcp-project-integration.tf
resource "apono_integration" "gcp-project-integration" {
  name                     = "Google Project"
  type                     = "gcp-project"
  connector_id             = "apono-connector-id"
  connected_resource_types = ["gcp-project"]
  metadata = {
    project_id = "<Project ID>"
  }
}
gcp-project-integration.tf
resource "apono_resource_integration" "gcp-project-integration" {
  name                     = "Google Project"
  type                     = "gcp-project"
  connector_id             = "apono-connector-id"
  connected_resource_types = ["gcp-project"]
  integration_config = {
    project_id = "<Project ID>"
  }
}

Schema


  • type gcp-project

  • connected_resource_types List of resource types to sync.

Available resource types you can use
  • gcp-project

  • gcp-project-cloud-spanner-table

  • gcp-project-cloud-storage-bucket

  • gcp-project-secret-manager-secret

  • gcp-project-bigquery-dataset

  • gcp-project-bigquery-table

  • gcp-project-function

  • gcp-project-compute-instance

  • gcp-project-cloud-run-service

  • gcp-project-cloud-run-job

  • gcp-project-artifact-registry-repository

  • gcp-project-pubsub-topic

  • gcp-project-pubsub-subscription

Integration Config


  • project_id (Required | String) Project ID

PreviousGoogle OrganizationNextGithub

Last updated 2 hours ago

Was this helpful?