1Password / terraform-provider-onepassword

Use the 1Password Terraform Provider to reference, create, or update items in your 1Password Vaults.
https://1password.com/secrets
MIT License
314 stars 41 forks source link

onepassword_item tags not in alphabetical order have constant diffs #155

Closed scott-doyland-burrows closed 1 month ago

scott-doyland-burrows commented 4 months ago

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"
  ]