Add dashboard UID auto-generation and Gitea CI workflow
Some checks failed
terraform-dev / validate (push) Failing after 1m53s
terraform-dev / plan (push) Has been skipped
terraform-dev / apply (push) Has been skipped

This commit is contained in:
Alexandr
2026-03-25 06:41:19 +03:00
parent 345c5786b3
commit 558a23d916
83 changed files with 53372 additions and 1 deletions

View File

@ -0,0 +1,25 @@
locals {
# Data sources with both manual changes allowed and destroy protection
datasources_ignore_and_protect = {
for ds in var.datasources : ds.name => ds
if lookup(ds, "keep_manual_changes", false) && lookup(ds, "prevent_destroy_on_recreate", false)
}
# Data sources with only manual changes allowed
datasources_ignore_only = {
for ds in var.datasources : ds.name => ds
if lookup(ds, "keep_manual_changes", false) && !lookup(ds, "prevent_destroy_on_recreate", false)
}
# Data sources with only destroy protection enabled
datasources_protect_only = {
for ds in var.datasources : ds.name => ds
if !lookup(ds, "keep_manual_changes", false) && lookup(ds, "prevent_destroy_on_recreate", false)
}
# Standard data sources without any special lifecycle management
datasources_standard = {
for ds in var.datasources : ds.name => ds
if !lookup(ds, "keep_manual_changes", false) && !lookup(ds, "prevent_destroy_on_recreate", false)
}
}