Skip to content

Instantly share code, notes, and snippets.

@WhatsARanjit
Created June 7, 2022 15:54
Show Gist options
  • Save WhatsARanjit/fc31c54df1f82efc8708cf830cbca97c to your computer and use it in GitHub Desktop.
Save WhatsARanjit/fc31c54df1f82efc8708cf830cbca97c to your computer and use it in GitHub Desktop.
Rename your TFC org
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