I am looking to whitelist multiple IP Addresses for an MS Azure SQL Server Firewall using a Bicep template. I've already configured the SQL server module, now I am looking to add/configure the firewallRules resource. I've used JSON parameter files for other Bicep modules. I'm wondering if there's any examples of this using Bicep code or JSON parameters. The module Microsoft provides is below, which is configured for a single range of IP addresses:
resource symbolicname 'Microsoft.Sql/servers/firewallRules@2022-05-01-preview' = { name: 'string' parent: resourceSymbolicName properties: { endIpAddress: 'string' startIpAddress: 'string' } }
Tried adding multiple parameter files and syntax/template appears to be wrong. Wondering what best practice here is.