You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| <aname="input_allowed_ip_addresses"></a> [allowed\_ip\_addresses](#input\_allowed\_ip\_addresses)|List of IP addresses that will be allowed to access the MinIO service (CIDR format, e.g., ['203.0.113.0/32', '192.168.1.0/24']) |`list(string)`|n/a|yes|
191
+
| <aname="input_allowed_ip_addresses"></a> [allowed\_ip\_addresses](#input\_allowed\_ip\_addresses)|Comma-separated list of IP addresses that will be allowed to access the MinIO service in CIDR format. Example: '203.0.113.0/32' for a single IP or '10.10.10.2/32,192.168.1.0/24' for multiple IPs. |`string`|`"10.10.10.2/32"`|no|
192
192
| <aname="input_coraza_waf_image"></a> [coraza\_waf\_image](#input\_coraza\_waf\_image)| Coraza WAF container image |`string`|`"ghcr.io/meshcloud/minio_azure_container_app/coraza-caddy:caddy-2.8-coraza-v2.0.0"`| no |
193
193
| <aname="input_location"></a> [location](#input\_location)| Azure region for deployment |`string`|`"West Europe"`| no |
194
194
| <aname="input_minio_image"></a> [minio\_image](#input\_minio\_image)| MinIO container image |`string`|`"quay.io/minio/minio:RELEASE.2025-04-22T22-12-26Z"`| no |
Copy file name to clipboardExpand all lines: variables.tf
+5-4Lines changed: 5 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -76,12 +76,13 @@ variable "coraza_waf_image" {
76
76
}
77
77
78
78
variable"allowed_ip_addresses" {
79
-
type=list(string)
80
-
description="List of IP addresses that will be allowed to access the MinIO service (CIDR format, e.g., ['203.0.113.0/32', '192.168.1.0/24'])"
79
+
type=string
80
+
description="Comma-separated list of IP addresses that will be allowed to access the MinIO service in CIDR format. Example: '203.0.113.0/32' for a single IP or '10.10.10.2/32,192.168.1.0/24' for multiple IPs."
0 commit comments