Help Please
1 TopicHow to pass you variable to env in azure devops?
How to pass you variable to env in azure devops? ```` parameters: - name: OrganizationName type: string - name: AgentPoolName type: string - name: ApiVersion type: string - name: jobName type: string jobs: - job: deleteOfflineAgents_${{ parameters.jobName }} displayName: Delete Offline Agents in ${{ parameters.AgentPoolName }} pool steps: - script: | AgentPAT=`aws secretsmanager get-secret-value --secret-id secret --query SecretString --output text | jq -r .secret` .azurepipelines/scripts/offline-azp-agent-cleaner.sh displayName: 'Delete Offline Agents' env: ORG_NAME: ${{ parameters.OrganizationName }} AGENT_POOLNAME: ${{ parameters.AgentPoolName }} API_VERSION: ${{ parameters.ApiVersion }} AZURE_DEVOPS_AGENT_PAT: $(AgentPAT) ```` when echo AZURE_DEVOPS_AGENT_PAT shows "$(AgentPAT)" not the PAT key "keysample123asd13"4KViews0likes2Comments