"Configuration files cannot be extracted from the application version" - CDK deployed ElasticBeanstalk app #29551
Unanswered
DimitriosKay
asked this question in
Q&A
Replies: 1 comment
-
Having this issue, by any chance did you figure it out? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a PHP app I'm trying to deploy to Beanstalk with a CDK pipeline.
I use
aws-s3-assets/Asset
to bundle the app into a zip file, then pass the BucketName and ObjectKey as asourceBundle
parameter toaws-elasticbeanstalk/CfnApplicationVersion
When all Pipeline steps go through and the EB Environment update starts doing its thing, it pops up with this Warming:
Then continues successfully, but the .ebextensions config files look like they have not ran on the instance (logs are clean of any config outputs)
Where it gets confusing is:
app/*
(when extracted the content files ofapp
are in the app folder) the .ebextension configs run, but the composer config is not found.Returning the following Info:
My folder structure is:
The directory path I give
aws-s3-assets/Asset
is:path: ${__dirname}/../../app
Beta Was this translation helpful? Give feedback.
All reactions