File: //snap/google-cloud-cli/current/help/man/man1/gcloud_app_create.1
.TH "GCLOUD_APP_CREATE" 1
.SH "NAME"
.HP
gcloud app create \- create an App Engine app within the current Google Cloud Project
.SH "SYNOPSIS"
.HP
\f5gcloud app create\fR [\fB\-\-region\fR=\fIREGION\fR] [\fB\-\-service\-account\fR=\fISERVICE_ACCOUNT\fR] [\fB\-\-ssl\-policy\fR=\fISSL_POLICY\fR] [\fIGCLOUD_WIDE_FLAG\ ...\fR]
.SH "DESCRIPTION"
Create an App Engine app within the current Google Cloud Project.
.SH "EXAMPLES"
To create an app with region chosen interactively, run:
.RS 2m
$ gcloud app create
.RE
To create an app in the us\-central region, run:
.RS 2m
$ gcloud app create \-\-region=us\-central
.RE
To create an app that with a user\-managed service account, run:
.RS 2m
$ gcloud app create \-\-service\-account=SERVICE_ACCOUNT
.RE
To create an app with minimum SSL policy allowing TLS 1.2 and above, run:
.RS 2m
$ gcloud app create \-\-ssl\-policy=TLS_VERSION_1_2
.RE
.SH "FLAGS"
.RS 2m
.TP 2m
\fB\-\-region\fR=\fIREGION\fR
The region to create the app within. Use \f5gcloud app regions list\fR to list
available regions. If not provided, select region interactively.
.TP 2m
\fB\-\-service\-account\fR=\fISERVICE_ACCOUNT\fR
The app\-level default service account to create the app with. Note that you can
specify a distinct service account for each App Engine version with \f5gcloud
app deploy \-\-service\-account\fR. However if you do not specify a
version\-level service account, this default will be used. If this parameter is
not provided for app creation, the app\-level default will be set to be the
out\-of\-box App Engine Default Service Account,
https://cloud.google.com/appengine/docs/standard/python3/service\-account
outlines the limitation of that service account.
.TP 2m
\fB\-\-ssl\-policy\fR=\fISSL_POLICY\fR
The app\-level SSL policy to create the app with. \fISSL_POLICY\fR must be one
of: \fBTLS_VERSION_1_0\fR, \fBTLS_VERSION_1_2\fR.
.RE
.sp
.SH "GCLOUD WIDE FLAGS"
These flags are available to all commands: \-\-access\-token\-file, \-\-account,
\-\-billing\-project, \-\-configuration, \-\-flags\-file, \-\-flatten,
\-\-format, \-\-help, \-\-impersonate\-service\-account, \-\-log\-http,
\-\-project, \-\-quiet, \-\-trace\-token, \-\-user\-output\-enabled,
\-\-verbosity.
Run \fB$ gcloud help\fR for details.
.SH "NOTES"
This variant is also available:
.RS 2m
$ gcloud beta app create
.RE