Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 2 KB

lambda-powershell-setup-dev-environment.md

File metadata and controls

17 lines (11 loc) · 2 KB

Setting Up a PowerShell Development Environment

To set up your development environment for writing PowerShell scripts, do the following:

  1. Install the correct version of PowerShell. Lambda's support for PowerShell is based on the cross-platform PowerShell Core 6.0 release. This means that you can develop your PowerShell Lambda functions on Windows, Linux, or Mac. If you don’t have this version of PowerShell installed, you can find instructions in Installing PowerShell Core.

  2. Install the .NET Core 2.1 SDK. Because PowerShell Core is built on top of .NET Core, the Lambda support for PowerShell uses the same .NET Core 2.1 Lambda runtime for both .NET Core and PowerShell Lambda functions. The .NET Core 2.1 SDK is used by the new Lambda PowerShell publishing cmdlets to create the Lambda deployment package. The .NET Core 2.1 SDK is available at .NET downloads on the Microsoft website. Be sure to install the SDK and not the runtime installation.

  3. Install the AWSLambdaPSCore module. You can install this either from the PowerShell Gallery, or you can install it by using the following PowerShell Core shell command:

    Install-Module AWSLambdaPSCore -Scope CurrentUser
    

Next Steps