Skip to content

fix: leverage cursor to fix spelling/grammar #13

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,5 @@ backend.tf.json
**/*.bak
**/*.*swp
**/.DS_Store

.cursor/rules
21 changes: 15 additions & 6 deletions examples/import-existing-org/debugging-script.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down