forked from jeffcutsinger-hb/PoshAws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Credentials.ps1
140 lines (106 loc) · 3.46 KB
/
Credentials.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
# This allows you work on the file as a script
$_privateCommand = Get-Command -Name "__MakeWildcard"
if (!$_privateCommand) {
. "$PSScriptRoot\QuotePrivateUnquoteFunctions.ps1"
}
$_credentialsPath = Join-Path (Split-Path $profile) .psaws
[System.Collections.Stack]$global:PsAwsCredentialsStack = New-Object System.Collections.Stack
function New-AwsCredentials {
[CmdletBinding()]
param(
[Parameter(Mandatory = $true)]
[string]$AccessKeyId,
[Parameter(Mandatory = $true)]
[string]$SecretAccessKey
)
New-Object Amazon.Runtime.BasicAWSCredentials -ArgumentList $AccessKeyId, $SecretAccessKey
}
function Add-StoredAwsCredentials {
[CmdletBinding()]
param(
[Parameter(Mandatory = $true)]
[string]$Name,
[Parameter(Mandatory = $true, ParameterSetName = "ByCredentials", ValueFromPipeline = $true)]
[Amazon.Runtime.AWSCredentials]$Credentials,
[Parameter(Mandatory = $true, ParameterSetName = "ByKeyAndSecret")]
[string]$AccessKeyId,
[Parameter(Mandatory = $true, ParameterSetName = "ByKeyAndSecret")]
[string]$SecretAccessKey,
[switch]$Force
)
if (!(Test-Path $_credentialsPath)) {
New-Item $_credentialsPath -ItemType directory
}
$_filePath = Join-Path $_credentialsPath "$Name.creds"
if ((Test-Path $_filePath) -and (!$Force)) {
throw "Existing credentials named '$Name'!"
}
if ($Credentials) {
$_keyId = $Credentials.GetCredentials().AccessKey
$_secret = $Credentials.GetCredentials().ClearSecretKey
}
elseif ($AccessKeyId -and $SecretAccessKey) {
$_keyId = $AccessKeyId
$_secret = $SecretAccessKey
}
else {
throw "Wha?!"
}
@{ "KeyId" = $_keyId; "Secret" = $_secret } `
| ConvertTo-Json `
| Out-File -FilePath $_filePath -Encoding utf8 -Force
}
function Get-StoredAwsCredentials {
[CmdletBinding()]
param(
[Parameter(Mandatory = $true)]
[string]$Name
)
$_filePath = Join-Path $_credentialsPath "$Name.creds"
if (Test-Path $_filePath) {
$_stored = Get-Content -Path $_filePath -Encoding UTF8 -Raw | ConvertFrom-Json
New-AwsCredentials -AccessKeyId $_stored.KeyId -SecretAccessKey $_stored.Secret
}
else {
throw "No stored credentials named '$Name'!"
}
}
function Get-StoredAwsCredentialNames {
[CmdletBinding()]
param()
Get-ChildItem -Path $_credentialsPath -Filter *.creds `
| Select-Object -ExpandProperty Name `
| ForEach-Object { [System.IO.Path]::GetFileNameWithoutExtension($_) }
}
function Get-AwsCredentials {
[CmdletBinding()]
param()
# Look in the stack first
if ($global:PsAwsCredentialsStack.Count -ne 0) {
[Amazon.Runtime.AWSCredentials] $global:PsAwsCredentialsStack.Peek()
}
else {
try {
New-Object -TypeName Amazon.Runtime.EnvironmentAWSCredentials
}
catch {
New-Object -TypeName Amazon.Runtime.InstanceProfileAWSCredentials
}
}
}
function Push-AwsCredentials {
[CmdletBinding()]
param(
[Parameter(Mandatory = $true, ValueFromPipeline = $true)]
[Amazon.Runtime.AWSCredentials]$Credentials
)
$global:PsAwsCredentialsStack.Push($Credentials)
}
function Pop-AwsCredentials {
[CmdletBinding()]
param(
)
if ($global:PsAwsCredentialsStack.Count -ne 0) {
[void] $global:PsAwsCredentialsStack.Pop()
}
}