Sets a MariaDB Configuration value on a MariaDB Server.
resource "azurerm_resource_group" "example" {
name = "api-rg-pro"
location = "West Europe"
}
resource "azurerm_mariadb_server" "example" {
name = "mariadb-server-1"
location = azurerm_resource_group.example.location
resource_group_name = azurerm_resource_group.example.name
sku_name = "B_Gen5_2"
ssl_enforcement_enabled = true
administrator_login = "mariadbadmin"
administrator_login_password = "H@Sh1CoR3!"
version = "10.2"
}
resource "azurerm_mariadb_configuration" "example" {
name = "interactive_timeout"
resource_group_name = azurerm_resource_group.example.name
server_name = azurerm_mariadb_server.example.name
value = "600"
}
The following arguments are supported:
name
- (Required) Specifies the name of the MariaDB Configuration, which needs to be a valid MariaDB configuration name. Changing this forces a new resource to be created.
server_name
- (Required) Specifies the name of the MariaDB Server. Changing this forces a new resource to be created.
resource_group_name
- (Required) The name of the resource group in which the MariaDB Server exists. Changing this forces a new resource to be created.
value
- (Required) Specifies the value of the MariaDB Configuration. See the MariaDB documentation for valid values. Changing this forces a new resource to be created.
In addition to the Arguments listed above - the following Attributes are exported:
id
- The ID of the MariaDB Configuration.The timeouts
block allows you to specify timeouts for certain actions:
create
- (Defaults to 30 minutes) Used when creating the MariaDB Configuration.read
- (Defaults to 5 minutes) Used when retrieving the MariaDB Configuration.delete
- (Defaults to 30 minutes) Used when deleting the MariaDB Configuration.MariaDB Configurations can be imported using the resource id
, e.g.
terraform import azurerm_mariadb_configuration.interactive_timeout /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.DBforMariaDB/servers/server1/configurations/interactive_timeout