Skip to content

Commit 7562cb5

Browse files
committed
Remove support for sunset MariaDB Azure service
These systems were all turned off in Sept 2025: https://learn.microsoft.com/en-us/azure/mariadb/migrate/whats-happening-to-mariadb?utm_source=chatgpt.com Signed-off-by: Tim Smith <tsmith84@gmail.com>
1 parent 8d01ec4 commit 7562cb5

File tree

9 files changed

+119
-1013
lines changed

9 files changed

+119
-1013
lines changed

providers/azure/config/config.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ Examples run in the Azure CLI:
4646
resources.DiscoveryPostgresFlexibleServers,
4747
resources.DiscoveryMySqlServers,
4848
resources.DiscoveryMySqlFlexibleServers,
49-
resources.DiscoveryMariaDbServers,
5049
resources.DiscoveryStorageAccounts,
5150
resources.DiscoveryStorageContainers,
5251
resources.DiscoveryKeyVaults,
@@ -122,7 +121,6 @@ Examples run in the Azure CLI:
122121
"compute": nil,
123122
"mysql": nil,
124123
"postgresql": nil,
125-
"mariadb": nil,
126124
"sql": nil,
127125
"storage": {
128126
Key: "object",

providers/azure/go.mod

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ require (
1919
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/databricks/armdatabricks v1.1.0
2020
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/iothub/armiothub v1.3.0
2121
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/keyvault/armkeyvault v1.5.0
22-
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/mariadb/armmariadb v1.2.0
2322
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/monitor/armmonitor v0.11.0
2423
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/msi/armmsi v1.3.0
2524
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/mysql/armmysql v1.2.0

providers/azure/go.sum

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,6 @@ github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/keyvault/armkeyvault v1.5.
120120
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/keyvault/armkeyvault v1.5.0/go.mod h1:4YIVtzMFVsPwBvitCDX7J9sqthSj43QD1sP6fYc1egc=
121121
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/managementgroups/armmanagementgroups v1.0.0 h1:pPvTJ1dY0sA35JOeFq6TsY2xj6Z85Yo23Pj4wCCvu4o=
122122
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/managementgroups/armmanagementgroups v1.0.0/go.mod h1:mLfWfj8v3jfWKsL9G4eoBoXVcsqcIUTapmdKy7uGOp0=
123-
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/mariadb/armmariadb v1.2.0 h1:seh4IsOzJkO3AxKPSHWmBKbTtO/4kiSDPa7spQmMxDY=
124-
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/mariadb/armmariadb v1.2.0/go.mod h1:DjMBNXv1qSHIv81Mj/MeAru4hk5WhOW4YZ40c+zo+Us=
125123
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/monitor/armmonitor v0.11.0 h1:Ds0KRF8ggpEGg4Vo42oX1cIt/IfOhHWJBikksZbVxeg=
126124
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/monitor/armmonitor v0.11.0/go.mod h1:jj6P8ybImR+5topJ+eH6fgcemSFBmU6/6bFF8KkwuDI=
127125
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/msi/armmsi v1.3.0 h1:L7G3dExHBgUxsO3qpTGhk/P2dgnYyW48yn7AO33Tbek=

providers/azure/resources/azure.lr

Lines changed: 0 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,6 @@ azure.subscription @defaults ("name") {
5050
mySql() azure.subscription.mySqlService
5151
// PostgreSQL resources in the subscription
5252
postgreSql() azure.subscription.postgreSqlService
53-
// MariaDB resources in the subscription
54-
mariaDb() azure.subscription.mariaDbService
5553
// Cosmos DB resources in the subscription
5654
cosmosDb() azure.subscription.cosmosDbService
5755
// Azure Key Vault resources in the subscription
@@ -1787,50 +1785,6 @@ private azure.subscription.mySqlService.flexibleServer @defaults("name location
17871785
firewallRules() []azure.subscription.sqlService.firewallrule
17881786
}
17891787

1790-
// Azure Database for MariaDB
1791-
private azure.subscription.mariaDbService {
1792-
// Subscription identifier
1793-
subscriptionId string
1794-
// List of MariaDB servers
1795-
servers() []azure.subscription.mariaDbService.server
1796-
}
1797-
1798-
// Azure Database for MariaDB server
1799-
private azure.subscription.mariaDbService.server @defaults("id name location") {
1800-
// MariaDB server ID
1801-
id string
1802-
// MariaDB server name
1803-
name string
1804-
// MariaDB server location
1805-
location string
1806-
// MariaDB server tags
1807-
tags map[string]string
1808-
// MariaDB server type
1809-
type string
1810-
// MariaDB server properties
1811-
properties dict
1812-
// MariaDB server configuration
1813-
configuration() []azure.subscription.sqlService.configuration
1814-
// MariaDB server databases
1815-
databases() []azure.subscription.mariaDbService.database
1816-
// MariaDB server firewall rules
1817-
firewallRules() []azure.subscription.sqlService.firewallrule
1818-
}
1819-
1820-
// Azure Database for MariaDB database
1821-
private azure.subscription.mariaDbService.database @defaults("id name") {
1822-
// MariaDB database ID
1823-
id string
1824-
// MariaDB database name
1825-
name string
1826-
// MariaDB database type
1827-
type string
1828-
// MariaDB database character set
1829-
charset string
1830-
// MariaDB database collation
1831-
collation string
1832-
}
1833-
18341788
// Azure Cosmos DB
18351789
private azure.subscription.cosmosDbService {
18361790
// Subscription identifier

providers/azure/resources/azure.lr.go

Lines changed: 0 additions & 423 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)