This message was deleted.
# azure
s
This message was deleted.
m
I discovered the issue. The env var does not appear to work for this variable. Instead, the following works:
Copy code
variables:
    AZURE_STORAGE_CONTAINER: $(Pulumi.StorageContainer)

  steps:
  - task: Pulumi@1
    inputs:
      azureSubscription: <service principal connection>
      command: 'up'
      cwd: '$(ProjectDirectory)/'
      stack: '${{ parameters.stack }}'
      args: '--yes'
    env:
      PULUMI_CONFIG_PASSPHRASE: $(Pulumi.Passphrase)
      AZURE_STORAGE_ACCOUNT: $(Pulumi.StorageAccount)
      AZURE_STORAGE_KEY: $(Pulumi.StorageKey)