Skip to content

Commit

Permalink
increase mariadb backup retention to 35 days (max) (#1551)
Browse files Browse the repository at this point in the history
  • Loading branch information
vgamayunov authored May 25, 2023
1 parent 4efc5b1 commit 9a671e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bicep/mariadb.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ resource mariaDb 'Microsoft.DBforMariaDB/servers@2018-06-01' = {
publicNetworkAccess: 'Disabled'
sslEnforcement: sslEnforcement ? 'Enabled' : 'Disabled'
storageProfile: {
backupRetentionDays: 21
backupRetentionDays: 35
geoRedundantBackup: 'Disabled'
storageAutogrow: 'Enabled'
storageMB: 5120
Expand Down
2 changes: 1 addition & 1 deletion tf/mariadb.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ resource "azurerm_mariadb_server" "mariadb" {
sku_name = "GP_Gen5_2"
version = "10.3"

backup_retention_days = 21
backup_retention_days = 35
geo_redundant_backup_enabled = false
public_network_access_enabled = false
# SSL enforce to be false when using Windows Remote Viz because Guacamole 1.4.0 with MariaDB doesn't support SSL. Need to upgrade to 1.5.0
Expand Down

0 comments on commit 9a671e0

Please sign in to comment.