Skip to content

Commit dd19029

Browse files
committed
fix(gke): add namespace and storage_type to gke-storage output
1 parent 0d26302 commit dd19029

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ 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
23+
storage_type = var.storage_type
2224
mount_path = "${var.pv_mount_path}/${local.pvc_name_prefix}-${idx}"
2325
mount_options = var.mount_options
2426
is_gcs = false

0 commit comments

Comments
 (0)