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 Terraform Resource Usage


resource "apono_integration" "azure-mysql-integration" {
  name                     = "Azure MySQL"
  type                     = "azure-mysql"
  connector_id             = "apono-connector-id"
  connected_resource_types = ["resource-type-1", "resource-type-2"]
  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. The following are the available resource type/s you can use:

    • azure-mysql

    • azure-mysql-database

    • azure-mysql-table

    • azure-mysql-role

Metadata

  • hostname (Required | String) Hostname

  • port (Required | String) Port

    • Default value: 3306

Last updated