Beginner Chalice question here!
I would like to connect to and modify a chalice project created by a team member that includes multiple lambda functions. I have already setup my AWS environment to connect to the same account, have git cloned the code, and can see the Lambda functions that were already created. My question is: How do I setup my Chalice environment such that when I do a chalice deploy
the existing lambda functions are updated and I'm not creating a bunch of new ones (and IAM roles etc) in our AWS Account?
In the Chalice CLI source code the only project initiation command listed is chalice new-project
; that is, there is no chalice connect-to-existing-project --name XXX
. If I do the following will my lambda functions be updated instead of creating new ones: (1) ensure i'm connected to the same AWS account (2) keep the project folders the same names and (3) keep my chalice routes in the code the same name? Wanted to check before I start spamming resources; any details appreciated!