Current implementation is returning blanked out password. This is due to passbolt Get Resources API which returns resources with password field blanked out.
$: kamal secrets fetch -d staging --adapter passbolt --from shared TEST
{"TEST":""} # <--- value is always blank
This PR fixes that issue by calling passbolt get resource --id (i.e. Get Resource API)
$: kamal secrets fetch -d staging --adapter passbolt --from shared TEST
{"TEST":"aoetnuhaoetnuhaotneuheaonsuh$"}
Current implementation is returning blanked out password. This is due to passbolt Get Resources API which returns resources with password field blanked out.
This PR fixes that issue by calling
passbolt get resource --id(i.e. Get Resource API)