- Notifications
You must be signed in to change notification settings - Fork4
Closed
Milestone
Description
Should cover use cases similar to the following:
// Create a bot user for Jenkinsresource "coderd_user" "jenkins" { username = "jenkins" name = "Jenkins CI/CD" email = "ci@example.com" roles = ["template-admin"] login_type = "none"}// Keep the password of a user account up to date from an external sourceresource "coderd_user" "audit" { username = "auditor" name = "Auditor" email = "security@example.com" roles = ["auditor"] login_type = "password" password = data.vault_password.auditor.value}// Ensure the admin account is suspendedresource "coderd_user" "admin" { username = "admin" suspended = true}// Only the following can adminresource "coderd_group" "bosses" { display_name = "The Bosses" members = [ data.coder_user.jon.id data.coder_user.ammar.id data.coder_user.kyle.id data.coder_user.rob.id ]}
Metadata
Metadata
Assignees
Labels
No labels