Created
June 7, 2022 15:54
-
-
Save WhatsARanjit/fc31c54df1f82efc8708cf830cbca97c to your computer and use it in GitHub Desktop.
Rename your TFC org
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export ORG="current_name" | |
export NEW="new_name" | |
curl -sk \ | |
-X PATCH \ | |
-H "Authorization: Bearer $TFH_token" \ | |
-H "Content-Type: application/vnd.api+json" \ | |
-d "{ \"data\": { \"type\": \"organizations\", \"attributes\": { \"name\": \"$NEW\" } } }" \ | |
"https://app.terraform.io/api/v2/organizations/${ORG}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment