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
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-mysqlconnected_resource_types
List of resource types to sync.
Integration Config
hostname
(Required | String) Hostnameport
(Required | String) PortDefault value:
3306
Last updated
Was this helpful?