Skip to content

Commit

Permalink
Couple aesthetic changes
Browse files Browse the repository at this point in the history
* Added new line to app/index.js and __main__.py
* Fixed typo in README
  • Loading branch information
Hitesh Boinpally authored and Hitesh Boinpally committed Mar 26, 2021
1 parent 692c93c commit a8d76b9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion aws-py-apigatewayv2-http-api-quickcreate/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# AWS API Gateway V2 HTTP API Quickstart

Set up a simple HTTP API using AWS API Gateway V2. The API executes a simple Lambda with function
Set up a simple HTTP API using AWS API Gateway V2. The API executes a simple Lambda function
found in `/app/index.js`.

## Prerequisites
Expand Down
2 changes: 1 addition & 1 deletion aws-py-apigatewayv2-http-api-quickcreate/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@
target=lambda_function.invoke_arn)

# Export the API endpoint for easy access
pulumi.export("endpoint", apigw.api_endpoint)
pulumi.export("endpoint", apigw.api_endpoint)
2 changes: 1 addition & 1 deletion aws-py-apigatewayv2-http-api-quickcreate/app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ exports.handler = async function(event, context) {
statusCode: 200,
body: "Hello, Pulumi!"
};
}
}

0 comments on commit a8d76b9

Please sign in to comment.