Ability to provide IP addresses as a list for Network Access
When adding IP addresses on a cluster/project (Network Access), it would be great to be able to provide a comma-delimited list of IP addresses instead of having to enter them one-by-one.
-
Emmanuel commented
Just came across a need for this too. i have a Terraform script to standup an azure serverless functionapp + staging slot + create a mongo database for it... everything works great except whitelisting the outbound ip's for the app+slot in the database
mongodbatlas_project_ip_access_list.ip_address only allows you to set a single ip address
however the azurerm_windows_function_app resource allows you to access the following attributes:
outbound_ip_address_list, eg ["52.23.25.3", "52.143.43.12"]
outbound_ip_addresses, eg "52.23.25.3,52.143.43.12"
possible_outbound_ip_address_list, eg ["52.23.25.3", "52.143.43.12"]
outbound_ip_possible_outbound_ip_addresses, eg "52.23.25.3,52.143.43.12"would be nice to pass through a list or a comma seperated string of ip's straight into mongodbatlas_project_ip_access_list.ip_address