Google Cloud Platform: How do I rename a Google Cloud Platform project?

Google Cloud-Platform

Google Cloud-Platform Problem Overview


Is it possible to rename a Google Cloud Platform project? If so, how?

I don't need to change the project ID or number. But I do want to change the project name (the name used by/for humans to identify a cloud platform project).

Thanks for any tips!

Google Cloud-Platform Solutions


Solution 1 - Google Cloud-Platform

  1. Use the hamburger menu in the top left to switch to the "IAM & Admin" section
  2. Click Settings
  3. Type the new name
  4. Press Save
  5. Reload the page

For those wondering how to change the project ID, the official documentation says:

> A project ID cannot be changed after the project is created, so if you are creating a new project, be sure to choose an ID that you'll be comfortable using for the lifetime of the project.

Solution 2 - Google Cloud-Platform

The easiest way it to go via the hamburger menu in the top left > "IAM & Admin" > Settings. These are the screenshots to the Google Cloud Product Settings

enter image description here

Solution 3 - Google Cloud-Platform

You can change the project name using gcloud projects update command.

First of all, you need to get the associated project ID.

gcloud projects list

Here is the example command.

gcloud projects update your-old-project-id --name="New project name"

For more information please refer this official documentation.

Note: You cannot change the ID of a project's ID or Number,you can only change the Name.

Solution 4 - Google Cloud-Platform

It seems that the Google console menus have changed since @Sphinxxx posted an answer to this question in 2017. (Unless for some reason my Google account is different than others. Please correct me if I'm wrong.)

It is still possible to rename the project, but in order to get to the Settings page, you must first go through the "IAM & admin" menu. Here are the steps I did:

  • Choose the project name from the menu just to the right of "Google APIs"
  • Open the navigation menu by clicking on the three bars ("hamburger") just to the left of "Google APIs"
  • Hover over IAM & admin in order to see that menu
  • Click on Settings to open the settings page where you can modify the project name

Screen shot of IAM & admin menu

NOTE: it is also possible to directly go to the settings page via the URL using the project id:

Solution 5 - Google Cloud-Platform

  1. Use the hamburger menu in the top left to switch to the "IAM & Admin" section.
  2. Click Settings.
  3. Type the new name.
  4. Press Save.
  5. Reload the page

Solution 6 - Google Cloud-Platform

  1. Go to IAM
  2. Settings
  3. Rename your project

GCP

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionSeth LaddView Question on Stackoverflow
Solution 1 - Google Cloud-PlatformAdamView Answer on Stackoverflow
Solution 2 - Google Cloud-PlatformAnup SurendranView Answer on Stackoverflow
Solution 3 - Google Cloud-Platformrajat varadeView Answer on Stackoverflow
Solution 4 - Google Cloud-PlatformMike BView Answer on Stackoverflow
Solution 5 - Google Cloud-PlatformAkshansha SinghalView Answer on Stackoverflow
Solution 6 - Google Cloud-PlatformDanieleduView Answer on Stackoverflow