This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Drop this in your profile file and you're good to go. | |
| # Creating ~\.aws\credentials file from creds stored in the aws powershell tools | |
| function Set-BotoCredentials { | |
| [CmdletBinding()] | |
| param ( | |
| [parameter()] | |
| [string] | |
| $ProfileName = 'default' | |
| ) |
OlderNewer