I've run into a weird issue on Terraform v 0.11.8. We are trying to close down the ports of ACR and make it available only in-network and also for the app-services access it.
The terraform IP_restriction rules documentation shows something like this.
network_rule_set {
default_action = "Deny"
**ip_rule = [{
action = "Allow"
ip_range = "x.x.x.x"
},
{
action = "Allow"
ip_range = "y.y.y.y"
}...]**
}
I have list of IPs in my variable/local
variable "myIps" {
type="list"
default="[x.x.x.x, y.y.y.y, z.z.z.z, ....]"
}
How do I convert the list of elements [x.x.x.x] into list of Objects with [{action = "Allow" ip_range = "x.x.x.x"}]. The first property action = "Allow" is always static. I have to pass the IP from my variable into the object property.
I tried with regex pattern like
variable "test2" {
type="string"
default = "{action=\"Allow\", ip_range=\"%s\"}"
}
but this returns string not the List of Objects.
Thanks!