Skip to content

Commit

Permalink
Set-TssSecret - EnableInheritPermission logic fixes #226
Browse files Browse the repository at this point in the history
  • Loading branch information
wsmelton committed Aug 17, 2021
1 parent 1c0b729 commit c79a7f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/functions/secrets/Set-TssSecret.ps1
Expand Up @@ -239,7 +239,7 @@ function Set-TssSecret {
}
}
if ($setSecretParams.ContainsKey('EnableInheritPermission')) {
$putSecretBody.EnableInheritPermissions = $EnableInheritPermission
$putSecretBody.EnableInheritPermissions = [boolean]$EnableInheritPermission
}
$invokeParamsSecret.Body = $putSecretBody | ConvertTo-Json -Depth 5

Expand Down

0 comments on commit c79a7f4

Please sign in to comment.