You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Absence of password change possibility via terraform provider:
resource "boundary_account" "users_acct" {
for_each = var.users
name = each.key
description = "User account for ${each.key}"
type = "password"
login_name = lower(each.key)
password = "PASSWORD"
auth_method_id = boundary_auth_method.password.id
}
terraform init
Initializing the backend...
Initializing provider plugins...
- Reusing previous version of hashicorp/boundary from the dependency lock file
- Installing hashicorp/boundary v0.1.0...
- Installed hashicorp/boundary v0.1.0 (signed by HashiCorp)
Terraform has been successfully initialized!
The current implementation does not support password change for user. But it can be needed for securing access, password rotation, adding labels to this user item.
Any manual changes of the password will lead to the impossibility to manage infrastructure.
If deploy users via terraform and after that change password we can't run terraform apply again
Do you want to perform these actions?
Terraform will perform the actions described above.
Only 'yes' will be accepted to approve.
Enter a value: yes
boundary_scope.global: Modifying... [id=global]
boundary_account.users_acct["stas"]: Modifying... [id=apw_W9eDoz9D2r]
boundary_account.users_acct["skole"]: Modifying... [id=apw_DFqi233aUN]
boundary_scope.global: Modifications complete after 0s [id=global]
Error: error updating account: {"status":400, "code":"InvalidArgument", "message":"No valid fields included in the update mask.", "details":{"request_fields":[{"name":"update_mask", "description":"No valid fields provided in the update mask."}]}}
Error: error updating account: {"status":400, "code":"InvalidArgument", "message":"No valid fields included in the update mask.", "details":{"request_fields":[{"name":"update_mask", "description":"No valid fields provided in the update mask."}]}}
The text was updated successfully, but these errors were encountered:
Absence of password change possibility via terraform provider:
The current implementation does not support password change for user. But it can be needed for securing access, password rotation, adding labels to this user item.
Any manual changes of the password will lead to the impossibility to manage infrastructure.
If deploy users via terraform and after that change password we can't run terraform apply again
The text was updated successfully, but these errors were encountered: