Modules/gcloud.ps1

function Get-GcpAllProjects {
    gcloud projects list
}
function Set-GcpProject([string] $name) {
    gcloud config set project $name
}
function Get-GcpAllSecrets {
    gcloud secrets list
}
function Get-GcpSecret([string] $name) {
    gcloud secrets versions access latest --secret $name
}