The AWS Toolkit for Visual Studio Code is an extension for working with AWS services such as AWS Lambda.
The toolkit is in preview and only available if built from source. This is pre-release software and we recommend against using it in a production environment.
This is an open source project because we want you to be involved. We love issues, feature requests, code reviews, pull requests or any positive contribution.
The toolkit has not been released to the marketplace, so in order to try it you must build and run from source:
- Clone the repository
git clone https://github.com/aws/aws-toolkit-vscode.git
cd aws-toolkit-vscode
- Build and package the toolkit
npm install
npm run package
- Install the toolkit
code --install-extension aws-toolkit-vscode-<VERSION>.vsix
- If you haven't already, sign up for AWS. You can create a free account here.
- Install the AWS CLI by following the instructions here.
- Run the command
aws configure
, and follow the instructions in the command prompt.
- If you haven't already, sign up for AWS. You can create a free account here.
- Install the AWS Tools for PowerShell by following the instructions here.
- Run the command Set-AWSCredential to define an AWS credential:
-
On Mac or Linux:
Set-AWSCredential -AccessKey [access-key-value] -SecretKey [secret-key-value] -StoreAs [profile-name]
-
On Windows:
Set-AWSCredential -AccessKey [access-key-value] -SecretKey [secret-key-value] -StoreAs [profile-name] -ProfileLocation $env:USERPROFILE\.aws\credentials
- If you haven't already, sign up for AWS. You can create a free account here.
- Manually configure your configuration and credentials files as described here.
- Launch Visual Studio Code.
- Select
View > Command Palette...
and search forAWS
. - Select
AWS: Connect to AWS
- Select the profile that you created earlier.
See Contributing.
The AWS Toolkit for Visual Studio Code is distributed under the Apache License, Version 2.0.