SecretManagement.VMware.CloudFoundation.Extension/public/Set-Secret.ps1

function Set-Secret {
    [CmdletBinding()]
    param (
        [string] $Name,
        [object] $Secret,
        [string] $VaultName,
        [hashtable] $AdditionalParameters
    )

    Write-Warning "It's not possible to configure secrets in a VMware Cloud Foundation Vault"    
}