gitlab-group/locals.tf

14 lines
374 B
Terraform
Raw Permalink Normal View History

2024-09-14 12:28:57 +00:00
locals {
2024-09-14 14:07:11 +00:00
default_ci_variables = {
for key, var in var.ci_variables : key => merge(
{
description = lookup(var, "description", ""),
protected = lookup(var, "protected", false),
masked = lookup(var, "masked", false),
environment_scope = lookup(var, "environment_scope", "*"),
},
var
)
}
2024-09-14 12:28:57 +00:00
}