From 840484d73438cfe7d9d3203a585d5c1667c42f94 Mon Sep 17 00:00:00 2001 From: Gordon Date: Wed, 21 Aug 2024 11:13:59 -0400 Subject: [PATCH] Missed a few apps --- pkg/k2/language_host/python/samples/starter/infra-api.py | 2 +- pkg/k2/language_host/python/samples/starter/infra-binding.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/k2/language_host/python/samples/starter/infra-api.py b/pkg/k2/language_host/python/samples/starter/infra-api.py index 53ac94aa..f010c52c 100644 --- a/pkg/k2/language_host/python/samples/starter/infra-api.py +++ b/pkg/k2/language_host/python/samples/starter/infra-api.py @@ -6,7 +6,7 @@ app = klotho.Application( "api", - project=os.getenv("PROJECT_NAME", "starter1"), + project=os.getenv("PROJECT_NAME", "starter"), ) dir = Path(__file__).parent.absolute() diff --git a/pkg/k2/language_host/python/samples/starter/infra-binding.py b/pkg/k2/language_host/python/samples/starter/infra-binding.py index 2a8be383..8d19a0de 100644 --- a/pkg/k2/language_host/python/samples/starter/infra-binding.py +++ b/pkg/k2/language_host/python/samples/starter/infra-binding.py @@ -4,8 +4,8 @@ import klotho.aws as aws app = klotho.Application( - "my-app", - project=os.getenv("PROJECT_NAME", "starter.binding"), + "binding", + project=os.getenv("PROJECT_NAME", "starter"), ) bucket = aws.Bucket("my-bucket", force_destroy=True)