You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description = "The external ID of the user with metadata"
199
+
}
148
200
```
149
201
150
202
<!-- schema generated by tfplugindocs -->
@@ -157,14 +209,18 @@ output "user_email" {
157
209
### Optional
158
210
159
211
-`email_verified` (Boolean) Whether the user's email address has been verified. Defaults to `false`.
212
+
-`external_id` (String) An external identifier for the user. Useful for mapping to identifiers in external systems.
160
213
-`first_name` (String) The user's first name.
161
214
-`last_name` (String) The user's last name.
215
+
-`metadata` (Map of String) Custom metadata for the user as key-value string pairs.
162
216
-`password` (String, Sensitive) The user's password. This is a write-only field and is not returned by the API. Only used during user creation.
163
-
-`password_hash` (String, Sensitive) A pre-hashed password (bcrypt). This is a write-only field and is not returned by the API. Use this if you're migrating users with existing password hashes.
217
+
-`password_hash` (String, Sensitive) A pre-hashed password (bcrypt or argon2). This is a write-only field and is not returned by the API. Use this if you're migrating users with existing password hashes.
218
+
-`password_hash_type` (String) The type of password hash (e.g., `bcrypt`, `argon2`). This is a write-only field used only during creation alongside `password_hash`.
164
219
165
220
### Read-Only
166
221
167
222
-`created_at` (String) The timestamp when the user was created (RFC3339 format).
168
223
-`id` (String) The unique identifier of the user (e.g., `user_01HXYZ...`).
224
+
-`locale` (String) The user's locale (e.g., `en-US`). Set by the system based on user activity.
169
225
-`profile_picture_url` (String) URL of the user's profile picture.
170
226
-`updated_at` (String) The timestamp when the user was last updated (RFC3339 format).
0 commit comments