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-instance"]
metadata = {
hostname = "<Hostname>"
port = "<Port>"
}
kubernetes_secret = {
name = "name_template_value"
namespace = "namespace_template_value"
}
}resource "apono_resource_integration" "azure-mysql-integration" {
name = "Azure MySQL"
type = "azure-mysql"
connector_id = "apono-connector-id"
connected_resource_types = ["azure-mysql-instance"]
integration_config = {
hostname = "<Hostname>"
port = "<Port>"
}
secret_store_config = {
kubernetes = {
name = "name_template_value"
namespace = "namespace_template_value"
}
}{
"azure-mysql-integration": {
"name": "Azure MySQL",
"type": "azure-mysql",
"connector_id": "apono-connector-id",
"connected_resource_types": [
"azure-mysql-instance"
],
"integration_config": {
"hostname": "<Hostname>",
"port": "<Port>",
},
"secret_store_config": {
"name": "name_template_value",
"namespace": "namespace_template_value"
}
}
}Schema
typeazure-mysqlconnected_resource_typesList of resource types to sync.
Integration Config
hostname(Required | String) Hostnameport(Required | String) PortDefault value:
3306
Last updated
Was this helpful?
