Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add FullName Attibute #175

Open
ExploitSysEcritel opened this issue May 3, 2023 · 1 comment
Open

Add FullName Attibute #175

ExploitSysEcritel opened this issue May 3, 2023 · 1 comment
Labels
enhancement New feature or request

Comments

@ExploitSysEcritel
Copy link

ExploitSysEcritel commented May 3, 2023

Description

Please add FullName Attribute

Potential Terraform Configuration

resource "ad_user" "toto" {
  
	principal_name            = "[email protected]"
	sam_account_name          = "toto"
	email_address             = "[email protected]"
	given_name                = "Toto"
	surname                   = "Tata"
	full_name                 = "toto Tata"
	display_name              = "toto Tata"
	cannot_change_password    = false
	container                 = "OU=Users,DC=toto,DC=local"
	enabled                   = true
	password_never_expires    = false
	smart_card_logon_required = false
	trusted_for_delegation    = false
}

Community Note

  • Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment
@ExploitSysEcritel ExploitSysEcritel added the enhancement New feature or request label May 3, 2023
@FranckSallet
Copy link

after reflection, I wanted to talk about the "cn" attribute like:

`
resource "ad_user" "toto" {

principal_name            = "[email protected]"
sam_account_name          = "toto"
email_address             = "[email protected]"
given_name                = "Toto"
surname                   = "Tata"
cn                        = "toto Tata"
display_name              = "toto Tata"
cannot_change_password    = false
container                 = "OU=Users,DC=toto,DC=local"
enabled                   = true
password_never_expires    = false
smart_card_logon_required = false
trusted_for_delegation    = false

}
`

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants