refactor: hoist CDN block_ips to a variable

block_ips was hardcoded in both pullzones as a single IP
("185.172.53.0"). Move it to a variable so updates don't require
editing the resource bodies (and so a future for_each refactor
doesn't bake the list into the map).

Default keeps the existing entry; no plan diff on apply.
This commit is contained in:
Patrick Schratz 2026-05-28 15:53:26 +02:00
commit 233dbfbdfd
Signed by: pat-s
GPG key ID: 3C6318841EF78925

8
cdn.tf
View file

@ -32,9 +32,7 @@ resource "bunnynet_pullzone" "devxy-r-binaries" {
cache_stale = ["offline", "updating"]
use_background_update = true
block_ips = [
"185.172.53.0"
]
block_ips = var.cdn_block_ips
# 50 TB
limit_bandwidth = 50000000000000
@ -86,9 +84,7 @@ resource "bunnynet_pullzone" "cran_rpkgs_com" {
cache_stale = ["offline", "updating"]
use_background_update = true
block_ips = [
"185.172.53.0"
]
block_ips = var.cdn_block_ips
# 50 TB
limit_bandwidth = 50000000000000