The empty zip file issue appears to have been a file permissions issue where the deployment process was attempting to write to a local folder that my user did not have full write access to.
Changing folder permissions allowed the deployment to run successfully.
The issue with the missing "cdk.json" was still an issue that you may want to address in your code repository for this tutorial.
Thanks!
For further actions, you may consider blocking this person and/or reporting abuse
We're a place where coders share, stay up-to-date and grow their careers.
I'm getting the following error when running the "cdk deploy" command:
Any insights you can share on how to correct this?
This appears to be due to a "cdk.json" file not being present in the "cdk" folder.
I manually created a "cdk.json" in folder using a structure similar to the suggestion at:
docs.aws.amazon.com/code-samples/l...
I got the "cdk deploy" command to run but now I'm getting a warning about an empty zip file being uploaded which halts the stack creation process.
The empty zip file issue appears to have been a file permissions issue where the deployment process was attempting to write to a local folder that my user did not have full write access to.
Changing folder permissions allowed the deployment to run successfully.
The issue with the missing "cdk.json" was still an issue that you may want to address in your code repository for this tutorial.
Thanks!