From 741708be93812d66d4f55ceb3547b8d95699c220 Mon Sep 17 00:00:00 2001 From: Novikov Sergey Date: Thu, 1 Feb 2024 11:06:18 +0100 Subject: [PATCH] Add sort to tags to avoid changes (#4) --- main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tf b/main.tf index 5c58c4c..59e5d8c 100644 --- a/main.tf +++ b/main.tf @@ -10,5 +10,5 @@ resource "onepassword_item" "this" { password = each.value.password url = each.value.url - tags = concat(var.tags_all, each.value.tags) + tags = sort(concat(var.tags_all, each.value.tags)) }