Examples/Safe_HardcodedCredential_1.ps1

function Set-AppSecrets {
    param(
        [Parameter(Mandatory)]
        [securestring]$ApiToken,
        [Parameter(Mandatory)]
        [securestring]$DbPassword
    )

    return @($ApiToken, $DbPassword)
}