Add test.tf
Some checks failed
Terraform Apply / Terraform Apply (push) Failing after 6s

This commit is contained in:
2025-11-18 13:14:32 +01:00
parent d554820e29
commit 86c00d6e55

9
test.tf Normal file
View File

@@ -0,0 +1,9 @@
locals {
main_countries = ["FR"]
all_countries = ["FR", "DE", "ES"]
blocked_countries_except_main = [
for code in local.all_countries : code
if not (code in local.main_countries)
]
}