Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hey!
What is the exact error that you get when you try to deploy your app to the App Platform?
I recently answered a similar quesiton regarding mysql2/promise and a managed MySQL cluster:
The issue from the discussion above was fixed by actually storing the CA certificate as a file instead of passing it as a string:
What you could do is to add a command to the app that creates the certificate file upon runtime, such as echo $MYSQL_CA_CERT > ca_cert.cert && <original run command>. App Platform requires the original run time command to start the app upon runtime.
Then you can reference that file in the connection string, eg:
ca: fs.readFileSync('./ca_cert.cert'),
Let me know how it goes!
- Bobby