https://www.terraform.io/docs/providers/google/r/compute_security_policy.html
rules are embedded in the google_compute_security_policy resource
And Cloud armor has a dumb limitation that only allows for up to 5 IPs in a rule- I have about 15 IPs i want to whitelist
I want this to be dynamic and not have to manually break those up into 3 rules that are statically defined in the google_compute_security_policy
I want to have a terraform var that is a list of all 15 IPs. Then loop over that var and just create 15 rules and apply to the google_compute_security_policy resource.
Is something like this possible?