[1][fix] Allow access to user_id

user_id was not stored into the state. Adding this now to ensure that it
can actually be used.
This commit is contained in:
xvlcwk
2024-01-12 13:14:10 +01:00
committed by chris
parent 018f9785a3
commit 7a17d725d5

View File

@@ -63,6 +63,10 @@ func resourceUser() *schema.Resource {
Sensitive: true,
Computed: true,
},
"user_id": {
Type: schema.TypeInt,
Computed: true,
},
},
}
}