-
Notifications
You must be signed in to change notification settings - Fork 66
Open
Labels
bugSomething isn't working as expected. Has never worked before. When it has, use "regression" instead.Something isn't working as expected. Has never worked before. When it has, use "regression" instead.
Description
Your environment
Terraform Provider Version: 3.0.2
Authentication Method: service accounts
Connect Server Version: n/a
OS: macos
Terraform Version: 1.14.0
What happened?
What did you expect to happen?
After importing resource and running terraform apply the password is updated.
Steps to reproduce
- Create a Terraform configuration with password_recipe:
resource "onepassword_item" "example" {
vault = "your-vault-id"
title = "Test Item"
category = "login"
password_recipe {
length = 32
digits = true
symbols = true
}
}
- Run
terraform applyto create the item - Remove the resource from state:
terraform state rm onepassword_item.example - Import the resource:
terraform import onepassword_item.example vaults/<vault-id>/items/<item-id> - Run terraform apply
- Observe that the password value has changed
Notes & Logs
Metadata
Metadata
Assignees
Labels
bugSomething isn't working as expected. Has never worked before. When it has, use "regression" instead.Something isn't working as expected. Has never worked before. When it has, use "regression" instead.