From c33498237e6ec1144268d4398e0864ece9701876 Mon Sep 17 00:00:00 2001 From: WestonPlatter Date: Tue, 10 Jun 2025 09:37:57 -0600 Subject: [PATCH] fix: leverage cursor to fix spelling/grammar --- .gitignore | 2 ++ .../import-existing-org/debugging-script.py | 21 +++++++++++++------ 2 files changed, 17 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 9636abe..2513f01 100644 --- a/.gitignore +++ b/.gitignore @@ -44,3 +44,5 @@ backend.tf.json **/*.bak **/*.*swp **/.DS_Store + +.cursor/rules diff --git a/examples/import-existing-org/debugging-script.py b/examples/import-existing-org/debugging-script.py index cbc5da8..aa6ec97 100644 --- a/examples/import-existing-org/debugging-script.py +++ b/examples/import-existing-org/debugging-script.py @@ -1,11 +1,20 @@ # -# We at Masterpoint found this python script to be useful when debugging import -# issues with existing users and roles into the terraform module to confirm the -# expected data values. For example, confirm data and formatting of -# exsting users' custom schema keys, values, and json encoded strings. +# Masterpoint Debugging Script for Google Workspace Imports # -# This is intended only for ad-hoc debugging purposes and has not been thorughly -# reviewed or tested. Use at your own risk. +# This script helps debug import issues with existing users and roles in the Terraform module. +# Use it to confirm the data and formatting of existing users' custom schema keys, values, +# and JSON-encoded strings. +# +# Note: This script is intended for ad-hoc debugging and has not been thoroughly reviewed or tested. +# Use with caution. +# +# Prerequisites: +# - Python 3.x +# - google-auth and google-api-python-client libraries +# - A Google Workspace service account key (JSON) +# +# Example usage: +# python debugging-script.py # from google.oauth2 import service_account