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)