Skip to content

Commit

Permalink
Avoiding inline comments
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosrodlop committed Aug 23, 2024
1 parent 38ed958 commit d99f906
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion blueprints/02-at-scale/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -727,7 +727,8 @@ resource "kubernetes_storage_class_v1" "efs" {
storage_provisioner = "efs.csi.aws.com"
reclaim_policy = "Delete"
parameters = {
provisioningMode = "efs-ap" # Dynamic provisioning
# Dynamic provisioning
provisioningMode = "efs-ap"
fileSystemId = module.efs.id
directoryPerms = "700"
#Issue #190
Expand Down

0 comments on commit d99f906

Please sign in to comment.