We have a use case for adding a static set of IP addresses to the Trusted IPs of all of our configs. For this, it would be very helpful to be able to manage trusted IPs when deploying configs via Terraform.
Example:
resource "doppler_config" "this" {
project = "my-project"
environment = "dev"
name = "dev"
trusted_ips = [ "1.2.3.4", "5.6.7.8" ]
}
This would prevent us inventing some complicated workaround or automation logic, which would also likely reduce unnecessary API calls to the Add endpoint.