Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Multiple App Engine apps inside the same Google Cloud project

I have one App Engine app inside a Google Cloud Platform project. How can I create a second App Engine app inside the same project?

I tried to create a new application on https://appengine.google.com/ but it seems to create a new Google Cloud Platform Project.

like image 215
poiuytrez Avatar asked Oct 29 '14 10:10

poiuytrez


People also ask

Can you have multiple App Engine per project?

In App Engine, we can create a single Application per project. This Application needs to be created in a specific region, which cannot be modified later. App Engine has Services to deploy multiple applications and codebases. We can deploy multiple apps with their configurations as individual services in App Engine.

Can a cloud have multiple applications?

Multi-cloud is a model of cloud computing where an organization utilizes a combination of clouds—which can be two or more public clouds, two or more private clouds, or a combination of public, private and edge clouds—to distribute applications and services.

How many App Engine instances does a project have?

Each Cloud Platform project can contain one App Engine application.


1 Answers

I believe there is a 1:1 relationship between App Engine apps and Cloud projects, but you can create up to 20 (at time of writing) App Engine services (previously modules) within the same Cloud project.

It depends how much you want the apps / services to be able to share data / task queues, etc. Services will share the same Datastore, for example.

You can also have multiple Cloud projects associated with the same billing account.

like image 94
tx802 Avatar answered Nov 05 '22 16:11

tx802