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.
![](https://secure.gravatar.com/avatar/8448040a48d0ada0c252b22a2f1b8fc1?size=40&default=https%3A%2F%2Fassets.uvcdn.com%2Fpkg%2Fadmin%2Ficons%2Fuser_70-6bcf9e08938533adb9bac95c3e487cb2a6d4a32f890ca6fdc82e3072e0ea0368.png)
-
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