Azure MySQL

Azure Database for MySQL is a relational database service powered by the MySQL community edition. It's a fully managed database as a service offering that can handle mission-critical workloads wit

Example Usage


azure-mysql-integration.tf
resource "apono_integration" "azure-mysql-integration" {
  name                     = "Azure MySQL"
  type                     = "azure-mysql"
  connector_id             = "apono-connector-id"
  connected_resource_types = ["azure-mysql-database"]
  metadata = {
    hostname = "<Hostname>"
    port = "<Port>"
  }
  kubernetes_secret = {
    name      = "name_template_value"
    namespace = "namespace_template_value"
  }
}

Schema


  • type azure-mysql

  • connected_resource_types List of resource types to sync.

Available resource types you can use
  • azure-mysql-database

  • azure-mysql-table

  • azure-mysql-role

Integration Config


  • hostname (Required | String) Hostname

  • port (Required | String) Port

    • Default value: 3306

Last updated

Was this helpful?