nutanix / terraform-provider-nutanix

Terraform Nutanix Provider
https://www.terraform.io/docs/providers/nutanix/
Mozilla Public License 2.0
93 stars 112 forks source link

Doc error nutanix_user #674

Open Taillan opened 4 months ago

Taillan commented 4 months ago

On the page https://registry.terraform.io/providers/nutanix/nutanix/latest/docs/data-sources/user

//Retrieve by Name
data "nutanix_user" "userbyname" {
    name = nutanix_user.user.name
}

is false, error :

╷
│ Error: Unsupported argument
│ 
│   on main.tf line 35, in data "nutanix_user" "account_name":
│   35:   name = "account_name"
│ 
│ An argument named "name" is not expected here.

but with the argument user_name it work

//Retrieve by Name
data "nutanix_user" "userbyname" {
    user_name = nutanix_user.user.name
}