fix: wrong allowed_parameters type for params
All checks were successful
pull-requests-open / Check commit compliance (pull_request) Successful in 4s
development / Check commit compliance (push) Successful in 5s

This commit is contained in:
Bertrand Lanson 2024-05-26 14:48:12 +02:00
parent a4e8e14096
commit e1128cf244
Signed by: lanson
SSH Key Fingerprint: SHA256:/nqc6HGqld/PS208F6FUOvZlUzTS0rGpNNwR5O2bQBw

View File

@ -9,7 +9,7 @@ path "sys/mounts/${tenant_prefix}/*" {
path "sys/remount" { path "sys/remount" {
capabilities = ["update"] capabilities = ["update"]
allowed_parameters = { allowed_parameters = {
from = "${tenant_prefix}/*" from = ["${tenant_prefix}/*"]
to = "${tenant_prefix}/*" to = ["${tenant_prefix}/*"]
} }
} }