Ace
Ace

Reputation: 1611

How to create gcloud project in a folder?

I know how to create a project using gcloud command line tool.

gcloud deployment-manager deployments create DEPLOYMENT_NAME

But what id really like to do is create this project inside of a specific folder in gcloud. Is there a way to accomplish that?

(At this point I am hesitant to use gcloud alpha, unless it is production ready.)

Upvotes: 1

Views: 624

Answers (1)

savac
savac

Reputation: 301

Create a project in a folder as documented here:

   gcloud alpha projects create [PROJECT_ID]
      --folder [FOLDER_ID]

Description of GCP's launch stages including alpha is here.

Upvotes: 3

Related Questions