From 9df153cfde420320407bcde0cbaeb2ce3c311c4b Mon Sep 17 00:00:00 2001 From: Sebastian Rieger Date: Thu, 4 Jul 2024 10:25:00 +0200 Subject: [PATCH] added note that localstack now requires pro license to create API gateways - students can apply for a free license --- example-projects/counter-demo/aws-lambda-localstack/start.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/example-projects/counter-demo/aws-lambda-localstack/start.py b/example-projects/counter-demo/aws-lambda-localstack/start.py index c86630e..1253090 100644 --- a/example-projects/counter-demo/aws-lambda-localstack/start.py +++ b/example-projects/counter-demo/aws-lambda-localstack/start.py @@ -131,7 +131,10 @@ print("Lambda Function and S3 Bucket to store the counter are available.\n" "Try to understand how Lambda can be used to cut costs regarding cloud services and what its pros\n" "and cons are.\n") -# sadly, AWS Academy Labs don't allow API gateways +# API gateways require a Pro license from localstack, as a student you can apply for +# a hobby/open source dev license, that's the same license that I used for the demo in the +# lab/lecture + # API gateway would allow getting an HTTP endpoint that we could access directly in the browser, # that would call our function, as in the provided demo: #