Remediation
From Azure Portalβ
- Log in to Azure Portal using https://portal.azure.com.
- Go to
Azure Database for PostgreSQL flexible servers. - For each database, under
Settings, clickServer parameters. - Search for
connection_throttle.enable. - Set
connection_throttle.enabletoON. - Click
Save.
From Azure CLIβ
Use the following command to enable connection_throttle.enable:
az postgres flexible-server parameter set \
--resource-group {{resource-group-name}} \
--server-name {{server-name}} \
--name connection_throttle.enable \
--value on
From PowerShellβ
Use the following command to update connection_throttle.enable:
Update-AzPostgreSqlFlexibleServerConfiguration `
-ResourceGroupName {{resource-group-name}} `
-ServerName {{server-name}} `
-Name connection_throttle.enable `
-Value on