This is a repository for PowerShell scripts published in the PowerShell gallery
The repository is devided among different sections
Get-Github.ps1 downloads archives from github for the following cases
Repository
- Default branch
master
. - Specified branch.
- Specified released artifact.
Using the script for this repository would look like this
.\Get-Github.ps1 -User Sarafian -Repository PowerShellScripts
.\Get-Github.ps1 -User Sarafian -Repository PowerShellScripts -Branch develop
.\Get-Github.ps1 -User Sarafian -Repository PowerShellScripts -Tag v0.1
There is also the option to expand the downloaded archive.
.\Get-Github.ps1 -User Sarafian -Repository PowerShellScripts -Expand
.\Get-Github.ps1 -User Sarafian -Repository PowerShellScripts -Branch develop -Expand
.\Get-Github.ps1 -User Sarafian -Repository PowerShellScripts -Tag v0.1 -Expand
CopyModule.ps1 copies a module from repository to another.
To copy e.g MarkdownPS module to a repository name to
with api key apikey
use one of the following script variants:
$moduleName="MarkdownPS"
# Copy the latest version from PSGallery
.\Copy-Module.ps1 -ModuleName $moduleName -ToRepository "to" -APIKey "apikey"
# Copy the 1.0 version from PSGallery
.\Copy-Module.ps1 -ModuleName $moduleName -ToRepository "to" -APIKey "apikey" -RequiredVersion 1.0
# Copy the latest version from a repository
.\Copy-Module.ps1 -ModuleName $moduleName -ToRepository "to" -APIKey "apikey" -FromRepository "from"
Resolve-CloudFormationTemplate.ps1 runs a local simulation of an AWS CloudFormation template file.
The script requires the following installed
The simulation is run by Dome9's cft-simulator. As the simulator has not official releases, the script will download the master branch on every day and then run npm install
. During the same day, the cached version will be used.
Because Dome9's cft-simulator supports only JSON type CloudFormation templates, the script will internally flip from one format to another when the template is in YAML format.
Example for JSON
$splat=@{
CFTPath="cft.json"
CFTParameters='{"env":"prod","a":123}'
CFTResolvedPath="cft.resolved.json"
}
Resolve-CloudFormationTemplate @splat -JSON
Example for YAML
$splat=@{
CFTPath="cft.yaml"
CFTParameters='{"env":"prod","a":123}'
CFTResolvedPath="cft.resolved.yaml"
}
Resolve-CloudFormationTemplate @splat -YAML
Check the CHANGELOG.md for release updates.