GithubHelp home page GithubHelp logo

Comments (2)

micklaw avatar micklaw commented on June 30, 2024 1
- name: Get all KeyVault secret values from env variables
      run: | 
        Get-ChildItem -Path Env: | ForEach-Object -Process {
          $keyName = $_.Name
          if ($_.Value -ne $null -And $_.Value -ne "" -And (Test-Json $_.Value -ErrorAction Ignore)) {
            $json = ($_.Value | ConvertFrom-Json)
            if ($json.uri -ne $null) {
              Write-Host "$keyName is keyvault json" -ForegroundColor Yellow
              $uri = $json.uri -replace "https://", ""
              $vault = $uri.Split(".")[0]
              $name = $uri.Split("/")[2]
              $secret = az keyvault secret show --vault-name $vault --name $name
              $secretJson = ($secret | ConvertFrom-Json)
              if ($secretJson.value -ne $null) {
                Write-Output "$($keyName)=$($secretJson.value)" >> $env:GITHUB_ENV
                Write-Host "$keyName secret found" -ForegroundColor DarkGreen
              }
            }
          }
        }
      shell: pwsh

This should do the job to parse the env variables which have the KeyVault JSON in them 👍🏼

from get-azure-app-configuration-action.

flcdrg avatar flcdrg commented on June 30, 2024

Or maybe these just get passed through to a separate action to be evaluated

from get-azure-app-configuration-action.

Related Issues (4)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.