Hi, first of all great tool seems really promising...
# general
r
Hi, first of all great tool seems really promising however during my POC I hit a problem currently stacked with: I do have DevOps pipeline issue - I'm not able to authenticate to ?KeyVault to get stack secrets? The attached image shows the log which does not tell me much ;( this is the yaml step:
Copy code
- task: Pulumi@1
        name: Online
        condition: or(eq(variables['Build.Reason'], 'PullRequest'), eq(variables['Build.Reason'], 'Manual'))
        inputs:
          azureSubscription: "pTest-cred"
          command: "preview"
          cwd: "$(Build.SourcesDirectory)/src/Ori.NetCoreBoilerplate.OnlineStack/"
          loginArgs: '<azblob://iacstate>'
          stack: "WeDev"
          createPrComment: true
        env:
          AZURE_STORAGE_ACCOUNT: "saromantestp"
          AZURE_STORAGE_KEY: $(AZURE-STORAGE-KEY)
          AZURE_CLIENT_ID: $(AZURE-CLIENT-ID)
          AZURE_CLIENT_SECRET: $(AZURE-CLIENT-SECRET)
          AZURE_TENANT_ID: $(AZURE-TENANT-ID)
          AZURE_KEYVAULT_AUTH_VIA_CLI: "true"
all data (secrets) should be ok - locally all works fine (see the second image) Is this the right place to troubleshoot? Or I should move my question somewhere else? Thx a lot!
@cold-car-23440 any idea? I'm guessing you are the devops guru here.. ;)