- Notifications
You must be signed in to change notification settings - Fork924
Closed
Description
Context
Currently, we only haveUsername
andEmail
, I would like also to havename
that can be set to any name by the user. For example, I want to set it to "Muhammad Atif Ali" and be accessed viadata.coder_workspace.me.owner_name
ToDo
- feat: add owner name to workspace terraform-provider-coder#181 Add to
coder_workspace
data in terraform provider asdata.coder_workspace.me.owner_name
- feat: expose
owner_name
incoder_workspace
resource #11639 Add to backend/database - feat: change owner name using account form #11683 Add to accounts page as
Name
settable to "First Name, Last Name"
Motivation
This will allow us to set the full name of the developers as theuser.name
property for our git-config module. e.g.,git config user.name "${data.coder_workspace.me.owner_name}"
cc:@kylecarbs,@bpmct and@ammario for comments