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

Azure Management Group

Azure Management Group

Example Usage


azure-management-group-integration.tf
resource "apono_integration" "azure-management-group-integration" {
  name                     = "Azure Management Group"
  type                     = "azure-management-group"
  connector_id             = "apono-connector-id"
  connected_resource_types = ["azure-management-group"]
  metadata = {
    management_group_id = "<Azure Management Group Id>"
    directory = "<Azure Primary Domain>"
    disable_locks = "<Disable Locks>"
  }
}
azure-management-group-integration.tf
resource "apono_resource_integration" "azure-management-group-integration" {
  name                     = "Azure Management Group"
  type                     = "azure-management-group"
  connector_id             = "apono-connector-id"
  connected_resource_types = ["azure-management-group"]
  integration_config = {
    management_group_id = "<Azure Management Group Id>"
    directory = "<Azure Primary Domain>"
    disable_locks = "<Disable Locks>"
  }
}

Schema


  • type azure-management-group

  • connected_resource_types List of resource types to sync.

Available resource types you can use
  • azure-management-group

  • azure-management-group-subscription

  • azure-management-group-resource-group

  • azure-management-group-resource-group-storage-account

  • azure-management-group-web-site

  • azure-management-group-container-instance

  • azure-management-group-vm

  • azure-management-group-galleries

  • azure-management-group-vm-scale-set

  • azure-management-group-container-registry

  • azure-management-group-static-web-app

  • azure-management-group-service-bus-namespace

  • azure-management-group-event-grid-domain

  • azure-management-group-event-grid-topic

  • azure-management-group-event-grid-namespace

  • azure-management-group-event-hub-namespace

  • azure-management-group-machine-learning-workspace

  • azure-management-group-machine-learning-registry

  • azure-management-group-virtual-desktop-host-pool

  • azure-management-group-virtual-desktop-workspace

  • azure-management-group-data-factory

  • azure-management-group-automation-account

  • azure-management-group-synapse-workspace

  • azure-management-group-function

  • azure-management-group-logic-app

  • azure-management-group-cosmos-db-account

  • azure-management-group-sql-server

  • azure-management-group-managed-instance

Integration Config


  • management_group_id (Required | String) Azure Management Group Id

  • directory (Optional | String) Azure Primary Domain

  • disable_locks (Optional | String) Disable Locks

    • Default value: false

    • Possible values: true, false

PreviousAzure Kubernetes Service (AKS)NextAzure MySQL

Last updated 2 hours ago

Was this helpful?