├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── LICENSE ├── README.md ├── cloud-resource-manager.sh └── docs ├── code-of-conduct.md └── contributing.md /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | ## Expected Behavior 2 | 3 | 4 | ## Actual Behavior 5 | 6 | 7 | ## Steps to Reproduce the Problem 8 | 9 | 1. 10 | 1. 11 | 1. 12 | 13 | ## Specifications 14 | 15 | - Version: 16 | - Platform: -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Fixes # 2 | 3 | > It's a good idea to open an issue first for discussion. 4 | 5 | - [ ] Tests pass 6 | - [ ] Appropriate changes to README are included in PR -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | 2 | Apache License 3 | Version 2.0, January 2004 4 | http://www.apache.org/licenses/ 5 | 6 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 7 | 8 | 1. Definitions. 9 | 10 | "License" shall mean the terms and conditions for use, reproduction, 11 | and distribution as defined by Sections 1 through 9 of this document. 12 | 13 | "Licensor" shall mean the copyright owner or entity authorized by 14 | the copyright owner that is granting the License. 15 | 16 | "Legal Entity" shall mean the union of the acting entity and all 17 | other entities that control, are controlled by, or are under common 18 | control with that entity. For the purposes of this definition, 19 | "control" means (i) the power, direct or indirect, to cause the 20 | direction or management of such entity, whether by contract or 21 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 22 | outstanding shares, or (iii) beneficial ownership of such entity. 23 | 24 | "You" (or "Your") shall mean an individual or Legal Entity 25 | exercising permissions granted by this License. 26 | 27 | "Source" form shall mean the preferred form for making modifications, 28 | including but not limited to software source code, documentation 29 | source, and configuration files. 30 | 31 | "Object" form shall mean any form resulting from mechanical 32 | transformation or translation of a Source form, including but 33 | not limited to compiled object code, generated documentation, 34 | and conversions to other media types. 35 | 36 | "Work" shall mean the work of authorship, whether in Source or 37 | Object form, made available under the License, as indicated by a 38 | copyright notice that is included in or attached to the work 39 | (an example is provided in the Appendix below). 40 | 41 | "Derivative Works" shall mean any work, whether in Source or Object 42 | form, that is based on (or derived from) the Work and for which the 43 | editorial revisions, annotations, elaborations, or other modifications 44 | represent, as a whole, an original work of authorship. For the purposes 45 | of this License, Derivative Works shall not include works that remain 46 | separable from, or merely link (or bind by name) to the interfaces of, 47 | the Work and Derivative Works thereof. 48 | 49 | "Contribution" shall mean any work of authorship, including 50 | the original version of the Work and any modifications or additions 51 | to that Work or Derivative Works thereof, that is intentionally 52 | submitted to Licensor for inclusion in the Work by the copyright owner 53 | or by an individual or Legal Entity authorized to submit on behalf of 54 | the copyright owner. For the purposes of this definition, "submitted" 55 | means any form of electronic, verbal, or written communication sent 56 | to the Licensor or its representatives, including but not limited to 57 | communication on electronic mailing lists, source code control systems, 58 | and issue tracking systems that are managed by, or on behalf of, the 59 | Licensor for the purpose of discussing and improving the Work, but 60 | excluding communication that is conspicuously marked or otherwise 61 | designated in writing by the copyright owner as "Not a Contribution." 62 | 63 | "Contributor" shall mean Licensor and any individual or Legal Entity 64 | on behalf of whom a Contribution has been received by Licensor and 65 | subsequently incorporated within the Work. 66 | 67 | 2. Grant of Copyright License. Subject to the terms and conditions of 68 | this License, each Contributor hereby grants to You a perpetual, 69 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 70 | copyright license to reproduce, prepare Derivative Works of, 71 | publicly display, publicly perform, sublicense, and distribute the 72 | Work and such Derivative Works in Source or Object form. 73 | 74 | 3. Grant of Patent License. Subject to the terms and conditions of 75 | this License, each Contributor hereby grants to You a perpetual, 76 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 77 | (except as stated in this section) patent license to make, have made, 78 | use, offer to sell, sell, import, and otherwise transfer the Work, 79 | where such license applies only to those patent claims licensable 80 | by such Contributor that are necessarily infringed by their 81 | Contribution(s) alone or by combination of their Contribution(s) 82 | with the Work to which such Contribution(s) was submitted. If You 83 | institute patent litigation against any entity (including a 84 | cross-claim or counterclaim in a lawsuit) alleging that the Work 85 | or a Contribution incorporated within the Work constitutes direct 86 | or contributory patent infringement, then any patent licenses 87 | granted to You under this License for that Work shall terminate 88 | as of the date such litigation is filed. 89 | 90 | 4. Redistribution. You may reproduce and distribute copies of the 91 | Work or Derivative Works thereof in any medium, with or without 92 | modifications, and in Source or Object form, provided that You 93 | meet the following conditions: 94 | 95 | (a) You must give any other recipients of the Work or 96 | Derivative Works a copy of this License; and 97 | 98 | (b) You must cause any modified files to carry prominent notices 99 | stating that You changed the files; and 100 | 101 | (c) You must retain, in the Source form of any Derivative Works 102 | that You distribute, all copyright, patent, trademark, and 103 | attribution notices from the Source form of the Work, 104 | excluding those notices that do not pertain to any part of 105 | the Derivative Works; and 106 | 107 | (d) If the Work includes a "NOTICE" text file as part of its 108 | distribution, then any Derivative Works that You distribute must 109 | include a readable copy of the attribution notices contained 110 | within such NOTICE file, excluding those notices that do not 111 | pertain to any part of the Derivative Works, in at least one 112 | of the following places: within a NOTICE text file distributed 113 | as part of the Derivative Works; within the Source form or 114 | documentation, if provided along with the Derivative Works; or, 115 | within a display generated by the Derivative Works, if and 116 | wherever such third-party notices normally appear. The contents 117 | of the NOTICE file are for informational purposes only and 118 | do not modify the License. You may add Your own attribution 119 | notices within Derivative Works that You distribute, alongside 120 | or as an addendum to the NOTICE text from the Work, provided 121 | that such additional attribution notices cannot be construed 122 | as modifying the License. 123 | 124 | You may add Your own copyright statement to Your modifications and 125 | may provide additional or different license terms and conditions 126 | for use, reproduction, or distribution of Your modifications, or 127 | for any such Derivative Works as a whole, provided Your use, 128 | reproduction, and distribution of the Work otherwise complies with 129 | the conditions stated in this License. 130 | 131 | 5. Submission of Contributions. Unless You explicitly state otherwise, 132 | any Contribution intentionally submitted for inclusion in the Work 133 | by You to the Licensor shall be under the terms and conditions of 134 | this License, without any additional terms or conditions. 135 | Notwithstanding the above, nothing herein shall supersede or modify 136 | the terms of any separate license agreement you may have executed 137 | with Licensor regarding such Contributions. 138 | 139 | 6. Trademarks. This License does not grant permission to use the trade 140 | names, trademarks, service marks, or product names of the Licensor, 141 | except as required for reasonable and customary use in describing the 142 | origin of the Work and reproducing the content of the NOTICE file. 143 | 144 | 7. Disclaimer of Warranty. Unless required by applicable law or 145 | agreed to in writing, Licensor provides the Work (and each 146 | Contributor provides its Contributions) on an "AS IS" BASIS, 147 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 148 | implied, including, without limitation, any warranties or conditions 149 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 150 | PARTICULAR PURPOSE. You are solely responsible for determining the 151 | appropriateness of using or redistributing the Work and assume any 152 | risks associated with Your exercise of permissions under this License. 153 | 154 | 8. Limitation of Liability. In no event and under no legal theory, 155 | whether in tort (including negligence), contract, or otherwise, 156 | unless required by applicable law (such as deliberate and grossly 157 | negligent acts) or agreed to in writing, shall any Contributor be 158 | liable to You for damages, including any direct, indirect, special, 159 | incidental, or consequential damages of any character arising as a 160 | result of this License or out of the use or inability to use the 161 | Work (including but not limited to damages for loss of goodwill, 162 | work stoppage, computer failure or malfunction, or any and all 163 | other commercial damages or losses), even if such Contributor 164 | has been advised of the possibility of such damages. 165 | 166 | 9. Accepting Warranty or Additional Liability. While redistributing 167 | the Work or Derivative Works thereof, You may choose to offer, 168 | and charge a fee for, acceptance of support, warranty, indemnity, 169 | or other liability obligations and/or rights consistent with this 170 | License. However, in accepting such obligations, You may act only 171 | on Your own behalf and on Your sole responsibility, not on behalf 172 | of any other Contributor, and only if You agree to indemnify, 173 | defend, and hold each Contributor harmless for any liability 174 | incurred by, or claims asserted against, such Contributor by reason 175 | of your accepting any such warranty or additional liability. 176 | 177 | END OF TERMS AND CONDITIONS 178 | 179 | APPENDIX: How to apply the Apache License to your work. 180 | 181 | To apply the Apache License to your work, attach the following 182 | boilerplate notice, with the fields enclosed by brackets "[]" 183 | replaced with your own identifying information. (Don't include 184 | the brackets!) The text should be enclosed in the appropriate 185 | comment syntax for the file format. We also recommend that a 186 | file or class name and description of purpose be included on the 187 | same "printed page" as the copyright notice for easier 188 | identification within third-party archives. 189 | 190 | Copyright [yyyy] [name of copyright owner] 191 | 192 | Licensed under the Apache License, Version 2.0 (the "License"); 193 | you may not use this file except in compliance with the License. 194 | You may obtain a copy of the License at 195 | 196 | http://www.apache.org/licenses/LICENSE-2.0 197 | 198 | Unless required by applicable law or agreed to in writing, software 199 | distributed under the License is distributed on an "AS IS" BASIS, 200 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 201 | See the License for the specific language governing permissions and 202 | limitations under the License. 203 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Cloud Resource Manager (via gcloud) 2 | 3 | Before deleting a Google Workspace account, the super admin must first delete all associated Google Cloud projects, folders, and Access Context Manager policies. If you want to find resources associated with your Cloud organization, you can either go to console.cloud.google.com > IAM & Admin > Manage Resources, OR use this script to programmatically interact with your resources. The super admin will need the Organization Administrator, Folder Admin, Project Deleter, and Policy Editor Roles to modify project, folder, and policy resources. 4 | 5 | Furthermore if your Cloud organization has Apps Script Projects, you need to delete them along with other Cloud projects before you can delete the Google Workspace account. The most common associated error message is: 6 | 7 | ``` 8 | "You have active projects in Google Cloud Platform. You need to delete all GCP projects before you can delete this account" 9 | ``` 10 | 11 | If used correctly, the script will first bind the necessary IAM permissions to your user, then guide you through deletions/restorations if necessary. 12 | 13 | To use this script, first navigate to a cloud shell instance from **within a project**. Running this script from the **Organization level** will result in a **PERMISSION_DENIED** error. Then, run the following to clone this repository and run the .sh file: 14 | 15 | ``` 16 | git clone https://github.com/google/cloud-resource-manager.git 17 | bash cloud-resource-manager/cloud-resource-manager.sh 18 | ``` 19 | -------------------------------------------------------------------------------- /cloud-resource-manager.sh: -------------------------------------------------------------------------------- 1 | : ' 2 | Copyright 2022 Google LLC 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | https://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | ' 16 | 17 | 18 | 19 | #!/usr/bin/env bash 20 | shopt -s extglob 21 | 22 | red=$(tput setaf 1) 23 | green=$(tput setaf 2) 24 | blue=$(tput setaf 4) 25 | reset=$(tput sgr0) 26 | 27 | function select_option { 28 | # little helpers for terminal print control and key input 29 | ESC=$(printf "\033") 30 | cursor_blink_on() { printf "$ESC[?25h"; } 31 | cursor_blink_off() { printf "$ESC[?25l"; } 32 | cursor_to() { printf "$ESC[$1;${2:-1}H"; } 33 | print_option() { printf " $1 "; } 34 | print_selected() { printf " $ESC[7m $1 $ESC[27m"; } 35 | get_cursor_row() { 36 | IFS=';' read -sdR -p $'\E[6n' ROW COL 37 | echo ${ROW#*[} 38 | } 39 | key_input() { 40 | read -s -n3 key 2>/dev/null >&2 41 | if [[ $key = $ESC[A ]]; then echo up; fi 42 | if [[ $key = $ESC[B ]]; then echo down; fi 43 | if [[ $key = "" ]]; then echo enter; fi 44 | } 45 | 46 | # initially print empty new lines (scroll down if at bottom of screen) 47 | for opt; do printf "\n"; done 48 | 49 | # determine current screen position for overwriting the options 50 | local lastrow=$(get_cursor_row) 51 | local startrow=$(($lastrow - $#)) 52 | # ensure cursor and input echoing back on upon a ctrl+c during read -s 53 | trap "cursor_blink_on; stty echo; printf '\n'; exit" 2 54 | cursor_blink_off 55 | 56 | local selected=0 57 | while true; do 58 | # print options by overwriting the last lines 59 | local idx=0 60 | for opt; do 61 | cursor_to $(($startrow + $idx)) 62 | if [ $idx -eq $selected ]; then 63 | print_selected "$opt" 64 | else 65 | print_option "$opt" 66 | fi 67 | ((idx++)) 68 | done 69 | 70 | # user key control 71 | case $(key_input) in 72 | enter) break ;; 73 | up) 74 | ((selected--)) 75 | if [ $selected -lt 0 ]; then selected=$(($# - 1)); fi 76 | ;; 77 | down) 78 | ((selected++)) 79 | if [ $selected -ge $# ]; then selected=0; fi 80 | ;; 81 | esac 82 | done 83 | 84 | # cursor position back to normal 85 | cursor_to $lastrow 86 | printf "\n" 87 | cursor_blink_on 88 | return $selected 89 | } 90 | ORGANIZATIONS_LIST=$(gcloud organizations list) 91 | ORGANIZATION_ID=$(sed -n -e '/ID/ {s/.*: *//p;q}' <<<"$ORGANIZATIONS_LIST") 92 | CURRENT_ACCOUNT=$(gcloud auth list) 93 | CURRENT_ACCOUNT_EMAIL=$(awk -F'ACCOUNT: ' '{print $2}' <<<"$CURRENT_ACCOUNT") 94 | CURRENT_ACCOUNT_EMAIL="${CURRENT_ACCOUNT_EMAIL//+([[:space:]])/}" 95 | FORMATTED_CURRENT_ACCOUNT_EMAIL="user:$CURRENT_ACCOUNT_EMAIL" 96 | 97 | IAM_ROLES=$(gcloud organizations get-iam-policy $ORGANIZATION_ID --filter="bindings.members:$CURRENT_ACCOUNT_EMAIL" --flatten="bindings[].members" --format="table(bindings.role)") 98 | IAM_ROLES=$(awk -F'ROLE: ' '{print $2}' <<<"$IAM_ROLES") 99 | REQUIRED_ROLES=("roles/resourcemanager.organizationAdmin" "roles/resourcemanager.folderAdmin" "roles/resourcemanager.projectDeleter" "roles/accesscontextmanager.policyEditor") 100 | 101 | echo "Welcome. If you are here, then you have been getting the error message 'You have active projects in Google Cloud Platform.' and you are having difficulty proceeding." 102 | echo "This script will help you clear out existing PROJECTS, FOLDERS, and ACCESS CONTEXT MANAGER POLICIES, allowing you to proceed." 103 | sleep 3s 104 | echo " " 105 | 106 | readarray -t unique < <( 107 | comm -23 \ 108 | <(printf '%s\n' "${REQUIRED_ROLES[@]}" | sort) \ 109 | <(printf '%s\n' "${IAM_ROLES[@]}" | sort) 110 | ) 111 | 112 | echo "First, let's see if you have the necessary IAM permissions to perform the necessary operations..." 113 | sleep 3s 114 | echo " " 115 | 116 | if [ ! -z "$unique" ]; then 117 | echo "${reset}Inspecting your current user, it looks like you have the following role(s) assigned:${green} " 118 | i=1 119 | for role in $(echo $IAM_ROLES); do 120 | echo "$i.${green} $role" 121 | i=$((i + 1)) 122 | done 123 | echo "${reset}But are missing the following role(s):${red}" 124 | a=1 125 | for role in $(echo ${unique[@]}); do 126 | echo "$a. $role" 127 | a=$((a + 1)) 128 | done 129 | 130 | echo "${reset}Please assign the IAM role(s) to your current user in order to perform the necessary deletions." 131 | echo "${reset}For more information on roles themselves, see here: " 132 | echo "${blue}https://cloud.google.com/iam/docs/understanding-roles#resource-manager-roles${reset}" 133 | echo "For more information on how to assign roles, see here: " 134 | echo "${blue}https://cloud.google.com/iam/docs/granting-changing-revoking-access#single-role" 135 | 136 | sleep 3s 137 | echo " " 138 | 139 | echo "${red}Attempt to programmatically bind necessary IAM role(s)?${reset}" 140 | echo 141 | options=("Yes" "No") 142 | select_option "${options[@]}" 143 | choice=$? 144 | if [ $choice == "0" ]; then 145 | for role in $(echo ${unique[@]}); do 146 | echo "adding role $role..." 147 | gcloud organizations add-iam-policy-binding $ORGANIZATION_ID --member="user:$CURRENT_ACCOUNT_EMAIL" --role=$role 148 | done 149 | else 150 | echo " " 151 | fi 152 | else 153 | echo $reset"Looks like you have all of the necessary IAM permissions to perform this operation." 154 | fi 155 | 156 | echo "${red}Select an option using up/down keys and press enter to confirm your selection...${reset}" 157 | echo 158 | options=("Manage Resources" "Exit Script") 159 | select_option "${options[@]}" 160 | choice=$? 161 | 162 | if [ $choice == "0" ]; then 163 | stayInMasterMenu="true" 164 | while [ $stayInMasterMenu == "true" ]; do 165 | echo ${red}"Select an option using up/down keys and press enter to confirm your selection...${reset}" 166 | echo 167 | options=("Delete active project(s)." "Delete active folder(s)." "Delete active Access Context Manager Policy(s)." "Recover recently deleted project(s)." "Recover recently deleted folder(s)." "Exit Script") 168 | select_option "${options[@]}" 169 | choice=$? 170 | if [ $choice == "0" ]; then 171 | stayInDeleteProjectMenu="true" 172 | while [ $stayInDeleteProjectMenu == "true" ]; do 173 | 174 | ACTIVE_PROJECT_IDS=$(gcloud projects list --format='csv[no-heading](projectId)' | 175 | while IFS="," read PROJECT_ID PROJECT_NUMBER; do 176 | echo $PROJECT_ID 177 | done) 178 | if [ -z "$ACTIVE_PROJECT_IDS" ]; then 179 | echo "${reset}Looks like you have no active projects." 180 | stayInDeleteProjectMenu="false" 181 | else 182 | echo ${red}"Select an option using up/down keys and press enter to confirm your selection...${reset}" 183 | echo ${green}"Here are your active project id(s):${reset}" 184 | echo ${reset}"For more information on project deletion, see here: ${blue}https://cloud.google.com/sdk/gcloud/reference/projects/delete"${reset} 185 | echo 186 | options=($ACTIVE_PROJECT_IDS "Delete all active projects" "Back") 187 | select_option "${options[@]}" 188 | choice=$? 189 | options_length=$((${#options[@]})) 190 | delete_all_options_length=$(($options_length - 2)) 191 | exit_options_length=$(($options_length - 1)) 192 | if [ "$delete_all_options_length" == "$choice" ]; then 193 | for project in $(echo ${ACTIVE_PROJECT_IDS[@]}); do 194 | echo "deleting project...$project" 195 | gcloud projects delete $project 196 | done 197 | elif [ "$exit_options_length" == "$choice" ]; then 198 | stayInDeleteProjectMenu="false" 199 | else 200 | echo ${red}"Deleting project ${options[$choice]}..." 201 | gcloud projects delete ${options[$choice]} 202 |   203 | fi 204 | fi 205 | done 206 | elif [ $choice == "1" ]; then 207 | stayInDeleteFoldersMenu="true" 208 | while [ $stayInDeleteFoldersMenu == "true" ]; do 209 | ORGANIZATION_ID=$(gcloud organizations list --format='csv[no-heading](ID)') 210 | ACTIVE_FOLDER_IDS=$(gcloud resource-manager folders list --organization $ORGANIZATION_ID --format='csv[no-heading](ID)') 211 | ACTIVE_FOLDER_NAMES=$(gcloud resource-manager folders list --organization $ORGANIZATION_ID --format='csv[no-heading](DISPLAY_NAME)') 212 | if [ -z "$ACTIVE_FOLDER_IDS" ]; then 213 | echo "${reset}Looks like you have no active folders." 214 | stayInDeleteFoldersMenu="false" 215 | else 216 | echo ${red}"Select an option using up/down keys and press enter to confirm your selection...${reset}" 217 | echo ${green}"Here are your active folder id(s):" 218 | echo ${reset}"For more information on folders deletion, see here: ${blue}https://cloud.google.com/sdk/gcloud/reference/resource-manager/folders/delete"${reset} 219 | echo 220 | options=($ACTIVE_FOLDER_IDS "Delete all active folders" "Back") 221 | select_option "${options[@]}" 222 | choice=$? 223 | options_length=$((${#options[@]})) 224 | delete_all_options_length=$(($options_length - 2)) 225 | exit_options_length=$(($options_length - 1)) 226 | if [ "$delete_all_options_length" == "$choice" ]; then 227 | for folder in $(echo ${ACTIVE_FOLDER_IDS[@]}); do 228 | echo "deleting folder...$folder" 229 | gcloud resource-manager folders delete $folder 230 | done 231 |   232 | elif [ "$exit_options_length" == "$choice" ]; then 233 | stayInDeleteFoldersMenu="false" 234 | else 235 | echo ${green}"Deleting folder ${options[$choice]}..." 236 | gcloud resource-manager folders delete ${options[$choice]} 237 | fi 238 | fi 239 | done 240 | elif [ $choice == "2" ]; then 241 | stayInDeleteAccessContextManagerPolicyMenu="true" 242 | while [ $stayInDeleteAccessContextManagerPolicyMenu == "true" ]; do 243 | ORGANIZATION_ID=$(gcloud organizations list --format='csv[no-heading](ID)') 244 | 245 | ACTIVE_ACCESS_CONTEXT_MANAGER_POLICY_IDS=$(gcloud access-context-manager policies list --organization $ORGANIZATION_ID --format='csv[no-heading](NAME)') 246 | if [ -z "$ACTIVE_ACCESS_CONTEXT_MANAGER_POLICY_IDS" ]; then 247 | echo "${reset}Looks like you have no active access context manager policies." 248 | stayInDeleteAccessContextManagerPolicyMenu="false" 249 | else 250 | echo ${red}"Select an option using up/down keys and press enter to confirm your selection...${reset}" 251 | echo ${green}"Here are your active access context manager policy id(s):" 252 | echo ${reset}"For more information on policy deletion, see here: ${blue}https://cloud.google.com/access-context-manager/docs/manage-access-policy#delete"${reset} 253 |   254 | echo 255 | options=($ACTIVE_ACCESS_CONTEXT_MANAGER_POLICY_IDS "Delete all active policies" "Back") 256 | select_option "${options[@]}" 257 | choice=$? 258 | options_length=$((${#options[@]})) 259 | delete_all_options_length=$(($options_length - 2)) 260 | exit_options_length=$(($options_length - 1)) 261 | if [ "$delete_all_options_length" == "$choice" ]; then 262 | for policy in $(echo ${ACTIVE_ACCESS_CONTEXT_MANAGER_POLICY_IDS[@]}); do 263 | echo "deleting policy...$policy" 264 | gcloud access-context-manager policies delete $policy 265 | done 266 |   267 | elif [ "$exit_options_length" == "$choice" ]; then 268 | stayInDeleteAccessContextManagerPolicyMenu="false" 269 | else 270 | echo ${green}"Deleting policy ${options[$choice]}..." 271 | gcloud access-context-manager policies delete ${options[$choice]} 272 | 273 | fi 274 | fi 275 | done 276 | elif [ $choice == "3" ]; then 277 | stayInRestoreRecentlyDeletedProjectMenu="true" 278 | while [ $stayInRestoreRecentlyDeletedProjectMenu == "true" ]; do 279 | RECENTLY_DELETED_PROJECT_IDS=$(gcloud projects list --filter='lifecycleState:DELETE_REQUESTED' --format='csv[no-heading](projectId)' | 280 | while IFS="," read PROJECT_ID PROJECT_NUMBER; do 281 | echo $PROJECT_ID 282 | done) 283 | if [ -z "$RECENTLY_DELETED_PROJECT_IDS" ]; then 284 | echo "${reset}Looks like you have no recently deleted projects." 285 | stayInRestoreRecentlyDeletedProjectMenu="false" 286 | else 287 | echo ${red}"Select an option using up/down keys and press enter to confirm your selection...${reset}" 288 | echo ${green}"Here are your recently deleted project id(s):${reset}" 289 | echo "For more information on projects restoration, see here: ${blue}https://cloud.google.com/sdk/gcloud/reference/projects/undelete"${reset} 290 |   291 | echo 292 | options=($RECENTLY_DELETED_PROJECT_IDS "Restore all recently deleted projects" "Back") 293 | select_option "${options[@]}" 294 | choice=$? 295 | options_length=$((${#options[@]})) 296 | restore_all_options_length=$(($options_length - 2)) 297 | exit_options_length=$(($options_length - 1)) 298 | if [ "$restore_all_options_length" == "$choice" ]; then 299 | echo "$green restoring all recently deleted projects" 300 | for project in $(echo ${RECENTLY_DELETED_PROJECT_IDS[@]}); do 301 | echo "restoring project...$project" 302 | gcloud projects undelete $project 303 | done 304 | elif [ "$exit_options_length" == "$choice" ]; then 305 | stayInRestoreRecentlyDeletedProjectMenu="false" 306 | else 307 | echo ${green}"Restoring project ${options[$choice]}..." 308 | gcloud projects undelete ${options[$choice]} 309 | fi 310 | fi 311 | done 312 | elif [ $choice == "4" ]; then 313 | stayInRestoreRecentlyDeletedFolderMenu="true" 314 | while [ $stayInRestoreRecentlyDeletedFolderMenu == "true" ]; do 315 | RECENTLY_DELETED_FOLDER_IDS=$(gcloud resource-manager folders list --organization=$ORGANIZATION_ID --filter='lifecycleState:DELETE_REQUESTED' --format='csv[no-heading](ID)' | 316 | while IFS="," read ID; do 317 | echo $ID 318 | done) 319 | if [ -z "$RECENTLY_DELETED_FOLDER_IDS" ]; then 320 | echo "${reset}Looks like you have no recently deleted folders." 321 | stayInRestoreRecentlyDeletedFolderMenu="false" 322 | else 323 | echo ${red}"Select an option using up/down keys and press enter to confirm your selection...${reset}" 324 | echo ${green}"Here are your recently deleted folder id(s):${reset}" 325 | echo "For more information on folder restoration, see here: ${blue}https://cloud.google.com/sdk/gcloud/reference/resource-manager/folders/undelete"${reset} 326 |   327 | echo 328 | options=($RECENTLY_DELETED_FOLDER_IDS "Restore all recently deleted folders" "Back") 329 | select_option "${options[@]}" 330 | choice=$? 331 | options_length=$((${#options[@]})) 332 | restore_all_options_length=$(($options_length - 2)) 333 | exit_options_length=$(($options_length - 1)) 334 | if [ "$restore_all_options_length" == "$choice" ]; then 335 | echo "$green restoring all recently deleted folders" 336 | for folder in $(echo ${RECENTLY_DELETED_FOLDER_IDS[@]}); do 337 | echo "restoring folder...$folder" 338 | gcloud resource-manager folders undelete $folder 339 | done 340 | elif [ "$exit_options_length" == "$choice" ]; then 341 | stayInRestoreRecentlyDeletedFolderMenu="false" 342 | else 343 | echo ${green}"Restoring folder ${options[$choice]}..." 344 | gcloud resource-manager folders undelete ${options[$choice]} 345 | fi 346 | fi 347 | done 348 | else 349 | echo "Exiting..." 350 | stayInMasterMenu="false" 351 | fi 352 | done 353 | else 354 | echo "Exiting..." 355 | exit 356 | fi -------------------------------------------------------------------------------- /docs/code-of-conduct.md: -------------------------------------------------------------------------------- 1 | # Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as 6 | contributors and maintainers pledge to making participation in our project and 7 | our community a harassment-free experience for everyone, regardless of age, body 8 | size, disability, ethnicity, gender identity and expression, level of 9 | experience, education, socio-economic status, nationality, personal appearance, 10 | race, religion, or sexual identity and orientation. 11 | 12 | ## Our Standards 13 | 14 | Examples of behavior that contributes to creating a positive environment 15 | include: 16 | 17 | * Using welcoming and inclusive language 18 | * Being respectful of differing viewpoints and experiences 19 | * Gracefully accepting constructive criticism 20 | * Focusing on what is best for the community 21 | * Showing empathy towards other community members 22 | 23 | Examples of unacceptable behavior by participants include: 24 | 25 | * The use of sexualized language or imagery and unwelcome sexual attention or 26 | advances 27 | * Trolling, insulting/derogatory comments, and personal or political attacks 28 | * Public or private harassment 29 | * Publishing others' private information, such as a physical or electronic 30 | address, without explicit permission 31 | * Other conduct which could reasonably be considered inappropriate in a 32 | professional setting 33 | 34 | ## Our Responsibilities 35 | 36 | Project maintainers are responsible for clarifying the standards of acceptable 37 | behavior and are expected to take appropriate and fair corrective action in 38 | response to any instances of unacceptable behavior. 39 | 40 | Project maintainers have the right and responsibility to remove, edit, or reject 41 | comments, commits, code, wiki edits, issues, and other contributions that are 42 | not aligned to this Code of Conduct, or to ban temporarily or permanently any 43 | contributor for other behaviors that they deem inappropriate, threatening, 44 | offensive, or harmful. 45 | 46 | ## Scope 47 | 48 | This Code of Conduct applies both within project spaces and in public spaces 49 | when an individual is representing the project or its community. Examples of 50 | representing a project or community include using an official project e-mail 51 | address, posting via an official social media account, or acting as an appointed 52 | representative at an online or offline event. Representation of a project may be 53 | further defined and clarified by project maintainers. 54 | 55 | This Code of Conduct also applies outside the project spaces when the Project 56 | Steward has a reasonable belief that an individual's behavior may have a 57 | negative impact on the project or its community. 58 | 59 | ## Conflict Resolution 60 | 61 | We do not believe that all conflict is bad; healthy debate and disagreement 62 | often yield positive results. However, it is never okay to be disrespectful or 63 | to engage in behavior that violates the project’s code of conduct. 64 | 65 | If you see someone violating the code of conduct, you are encouraged to address 66 | the behavior directly with those involved. Many issues can be resolved quickly 67 | and easily, and this gives people more control over the outcome of their 68 | dispute. If you are unable to resolve the matter for any reason, or if the 69 | behavior is threatening or harassing, report it. We are dedicated to providing 70 | an environment where participants feel welcome and safe. 71 | 72 | Reports should be directed to *[PROJECT STEWARD NAME(s) AND EMAIL(s)]*, the 73 | Project Steward(s) for *[PROJECT NAME]*. It is the Project Steward’s duty to 74 | receive and address reported violations of the code of conduct. They will then 75 | work with a committee consisting of representatives from the Open Source 76 | Programs Office and the Google Open Source Strategy team. If for any reason you 77 | are uncomfortable reaching out to the Project Steward, please email 78 | opensource@google.com. 79 | 80 | We will investigate every complaint, but you may not receive a direct response. 81 | We will use our discretion in determining when and how to follow up on reported 82 | incidents, which may range from not taking action to permanent expulsion from 83 | the project and project-sponsored spaces. We will notify the accused of the 84 | report and provide them an opportunity to discuss it before any action is taken. 85 | The identity of the reporter will be omitted from the details of the report 86 | supplied to the accused. In potentially harmful situations, such as ongoing 87 | harassment or threats to anyone's safety, we may take action without notice. 88 | 89 | ## Attribution 90 | 91 | This Code of Conduct is adapted from the Contributor Covenant, version 1.4, 92 | available at 93 | https://www.contributor-covenant.org/version/1/4/code-of-conduct.html 94 | -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- 1 | # How to Contribute 2 | 3 | We'd love to accept your patches and contributions to this project. There are 4 | just a few small guidelines you need to follow. 5 | 6 | ## Contributor License Agreement 7 | 8 | Contributions to this project must be accompanied by a Contributor License 9 | Agreement. You (or your employer) retain the copyright to your contribution; 10 | this simply gives us permission to use and redistribute your contributions as 11 | part of the project. Head over to to see 12 | your current agreements on file or to sign a new one. 13 | 14 | You generally only need to submit a CLA once, so if you've already submitted one 15 | (even if it was for a different project), you probably don't need to do it 16 | again. 17 | 18 | ## Code Reviews 19 | 20 | All submissions, including submissions by project members, require review. We 21 | use GitHub pull requests for this purpose. Consult 22 | [GitHub Help](https://help.github.com/articles/about-pull-requests/) for more 23 | information on using pull requests. 24 | 25 | ## Community Guidelines 26 | 27 | This project follows [Google's Open Source Community 28 | Guidelines](https://opensource.google/conduct/). 29 | --------------------------------------------------------------------------------