From 57f00bf78130ba883d6113169df8bfcc57059447 Mon Sep 17 00:00:00 2001 From: Anuj Hydrabadi Date: Tue, 24 Feb 2026 14:39:03 +0530 Subject: [PATCH] fix: use snake_case for access_modes in pvc sample The sample in facets.yaml used camelCase `accessModes` but the Terraform code looks up `access_modes` (snake_case), so the sample key was ignored. Co-Authored-By: Claude Opus 4.6 --- modules/pvc/k8s/0.1/facets.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/pvc/k8s/0.1/facets.yaml b/modules/pvc/k8s/0.1/facets.yaml index 56b765796..e10184b70 100644 --- a/modules/pvc/k8s/0.1/facets.yaml +++ b/modules/pvc/k8s/0.1/facets.yaml @@ -39,6 +39,6 @@ sample: size: volume: 2Gi advanced: - accessModes: + access_modes: - ReadWriteOnce storage_class_name: gp2