fixed option to set descriptions for environment tag values (#3174)

This commit is contained in:
Liam Nesteroff
2025-06-19 17:00:17 +10:00
committed by GitHub
parent f55278617c
commit 6d8b813e51

View File

@@ -60,7 +60,7 @@ locals {
} }
) )
description = try( description = try(
local.tags.environment.values[v].description, null local.tags.environment.values[v.tag_name].description, null
) )
} }
} }