Skip to content

Commit

Permalink
Create Get-VariablesList.ps1
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronparker committed Feb 16, 2024
1 parent 29c509d commit 9da3279
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions scripts/others/Get-VariablesList.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
$params = @{
Uri = $SecureVars.VariablesList
UseBasicParsing = $true
ErrorAction = "Stop"
}
$Variables = Invoke-RestMethod @params

0 comments on commit 9da3279

Please sign in to comment.