Secure secrets with Azure KeyVault using DevOps Variable Groups

Sdílet
Vložit
  • čas přidán 11. 07. 2020
  • Secure application secrets with Azure KeyVault using DevOps Variable Groups.
    Arguments:
    -DBNAME "$(DBNAME)" -DBUSERNAME "$(DBUserName)" -PASWORD "$(Password)"
    Inline Script :
    Param(
    [string]$DNBAME,
    [string]$DBUSERNAME ,
    [string]$PASWORD
    )
    Write-Host "##vso[task.setvariable variable=DNBANE]$DBNAME"
    Write-Host "##vso[task.setvariable variable=DBUSERNAME]$DBUSERNAME"
    Write-Host "##vso[task.setvariable variable=PASWORD]$PASWORD"

Komentáře • 9

  • @Emptychannnel
    @Emptychannnel Před 2 lety

    Lucky i found your video, very helpful, thanks a Lot!!!

  • @BinoyKalathil
    @BinoyKalathil Před 4 lety

    Very informative!

  • @chino_20
    @chino_20 Před 3 lety +1

    thanks for the information, very useful

  • @niharhandoo84
    @niharhandoo84 Před 3 lety +1

    excellent video!

  • @jgesior
    @jgesior Před 2 lety

    I have a question, at 5:26 in your video you click the secrets to be added. If I had a key vault with over 100 secrets is there any way to select all the secrets without having to click each one individually?