-
Notifications
You must be signed in to change notification settings - Fork 51
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
1.2.0 use of sections does not work #96
Comments
Maybe this info will help with investigation.
|
+1 this. We've downgraded to 1.1.4. Terraform reports resources as existing, yet in the UI and CLI resources do not contain sections. If I add a new section in TF, the apply output shows the expected sections although none exist on the item in 1P. We've pinned to 1.1.4, tainted affected resources and recreated. |
We're having the same issue. This is a pretty significant bug! I'm disappointed this is not getting more attention. 😞 |
With the time gap between releases and the lack of attention to major bugs I'm curious if the 1Password has abandoned this project. |
Hi @JBG-brad. This one is currently on our radar and we'll try to address it as soon as possible. I understand how frustrating it is. Sorry for the delay. |
FIx pushed with the 1.2.1 release. |
When using version 1.2.0 the usage of sections stopped working as expected compared to version 1.1.2 till 1.1.4:
`
resource "onepassword_item" "workspace_details" {
vault = var.vault_uuid
title = var.name
category = "login" # Only supports login, database of notes
password = var.token
#username = "not-required"
section {
label = "Workspace"
field {
label = "workspace_id"
type = "STRING"
value = var.workspace_id
}
field {
label = "workspace_url"
type = "STRING"
value = var.workspace_url
}
}
}
`
The text was updated successfully, but these errors were encountered: