ps/Modules/Cole.PowerShell.Developer/Public/Use-ProductionJira.ps1
2023-05-30 22:51:22 -07:00

8 lines
314 B
PowerShell

function Use-ProductionJira {
[CmdletBinding()]
param()
Set-EnvironmentVariable -Name "JIRA_BEARERTOKEN" -StoreName Process -Value (Get-EnvironmentVariable -Name "JIRA_BEARERTOKEN_PROD" -StoreName User)
Set-EnvironmentVariable -Name JIRA_URL -Value "https://jira.alkami.com/" -StoreName Process
}