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

onepassword_item tags not in alphabetical order have constant diffs #155

Closed
scott-doyland-burrows opened this issue Feb 29, 2024 · 0 comments · Fixed by #167
Closed

onepassword_item tags not in alphabetical order have constant diffs #155

scott-doyland-burrows opened this issue Feb 29, 2024 · 0 comments · Fixed by #167
Labels
bug Something isn't working

Comments

@scott-doyland-burrows
Copy link

terraform 1.7.4
provider 1.4.2
1passsord CLI 2.25.0

Tags not in alphabetical order cause constant diffs:

resource "onepassword_item" "item" {
...
...

  tags = [
    "a",
    "c",
    "b"
  ]
}

If I alter the tags to be as follows, then there is not a constant diff.

  tags = [
    "a",
    "b",
    "c"
  ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant