Skip to content

Commit f916271

Browse files
dspclaude
andcommitted
fix: ignore recoveryEmail and recoveryPhone on imported GWS users
These are user-managed fields that shouldn't be touched by IaC. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 56ccba8 commit f916271

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/google.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ MEMBERS.forEach((member) => {
8989
name: { familyName: member.lastName!, givenName: member.firstName! },
9090
orgUnitPath: mcpOrgUnit.orgUnitPath,
9191
},
92-
{ import: primaryEmail, dependsOn: [mcpOrgUnit] }
92+
{ import: primaryEmail, dependsOn: [mcpOrgUnit], ignoreChanges: ['recoveryEmail', 'recoveryPhone'] }
9393
);
9494
provisionedUsersByEmail[primaryEmail] = user;
9595
} else {

0 commit comments

Comments
 (0)