Skip to content

Commit 101c6b1

Browse files
authored
Merge pull request GoogleCloudPlatform#4684 from vikramvs-gg/fix_hyperdisk
Fixing output for gke-storage module
2 parents ee2410d + e3c12f1 commit 101c6b1

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

modules/file-system/gke-storage/outputs.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,10 @@ output "persistent_volume_claims" {
1919
value = flatten([
2020
for idx in range(var.pvc_count) : [{
2121
name = "${local.pvc_name_prefix}-${idx}"
22+
namespace = var.namespace
2223
mount_path = "${var.pv_mount_path}/${local.pvc_name_prefix}-${idx}"
2324
mount_options = var.mount_options
24-
is_gcs = false
25+
storage_type = local.storage_type
2526
}]
2627
])
2728
}

0 commit comments

Comments
 (0)