Skip to content

Commit 570a7f9

Browse files
committed
Fix gcs_source to uris transform
1 parent 17848b1 commit 570a7f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/valkey/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ resource "google_memorystore_instance" "valkey_cluster" {
7474
dynamic "gcs_source" {
7575
for_each = var.gcs_source != null ? ["gcs_source"] : []
7676
content {
77-
uris = var.gcs_source
77+
uris = split(",", var.gcs_source)
7878
}
7979
}
8080

0 commit comments

Comments
 (0)