- NAME
-
- gcloud projects create - create a new project
- SYNOPSIS
-
-
gcloud projects create[PROJECT_ID] [--no-enable-cloud-apis] [--folder=FOLDER_ID] [--labels=[KEY=VALUE,…]] [--name=NAME] [--organization=ORGANIZATION_ID] [--set-as-default] [--tags=[KEY=VALUE,…]] [GCLOUD_WIDE_FLAG …]
-
- DESCRIPTION
-
Creates a new project with the given project ID. By default, projects are not
created under a parent resource. To do so, use either the
--organizationor--folderflag. - EXAMPLES
-
The following command creates a project with ID
example-foo-bar-1, nameHappy projectand labeltype=happy:gcloud projects create example-foo-bar-1 --name="Happy project" --labels=type=happyBy default, projects are not created under a parent resource. The following command creates a project with ID
example-2with parentfolders/12345:gcloud projects create example-2 --folder=12345The following command creates a project with ID
example-3with parentorganizations/2048:gcloud projects create example-3 --organization=2048 - POSITIONAL ARGUMENTS
-
- [
PROJECT_ID] -
ID for the project you want to create.
Project IDs are immutable and can be set only during project creation. They must start with a lowercase letter and can have lowercase ASCII letters, digits or hyphens. Project IDs must be between 6 and 30 characters.
- [
- FLAGS
-
--enable-cloud-apis-
Enable
cloudapis.googleapis.comduring creation. Enabled by default, use--no-enable-cloud-apisto disable.