Skip to content

Commit 9b9112a

Browse files
fix: leverage cursor to fix spelling/grammar (#13)
## what - fix spelling and grammar issues <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **Documentation** - Improved header comments in the debugging script for Google Workspace imports, adding clearer usage instructions, prerequisites, and cautionary notes. - **Chores** - Updated the `.gitignore` file to exclude the `.cursor/rules` directory or file from version control. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
1 parent 83b9747 commit 9b9112a

File tree

2 files changed

+17
-6
lines changed

2 files changed

+17
-6
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,5 @@ backend.tf.json
4444
**/*.bak
4545
**/*.*swp
4646
**/.DS_Store
47+
48+
.cursor/rules

examples/import-existing-org/debugging-script.py

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,20 @@
11
#
2-
# We at Masterpoint found this python script to be useful when debugging import
3-
# issues with existing users and roles into the terraform module to confirm the
4-
# expected data values. For example, confirm data and formatting of
5-
# exsting users' custom schema keys, values, and json encoded strings.
2+
# Masterpoint Debugging Script for Google Workspace Imports
63
#
7-
# This is intended only for ad-hoc debugging purposes and has not been thorughly
8-
# reviewed or tested. Use at your own risk.
4+
# This script helps debug import issues with existing users and roles in the Terraform module.
5+
# Use it to confirm the data and formatting of existing users' custom schema keys, values,
6+
# and JSON-encoded strings.
7+
#
8+
# Note: This script is intended for ad-hoc debugging and has not been thoroughly reviewed or tested.
9+
# Use with caution.
10+
#
11+
# Prerequisites:
12+
# - Python 3.x
13+
# - google-auth and google-api-python-client libraries
14+
# - A Google Workspace service account key (JSON)
15+
#
16+
# Example usage:
17+
# python debugging-script.py
918
#
1019

1120
from google.oauth2 import service_account

0 commit comments

Comments
 (0)