You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A very common pattern for terraform resources is to have common tags defined in locals, and then use terraforms merge function to merge in extra resource-specific tags, per resource
i.e tags = merge(local.tags, {Name="hasura"})
I can see the linter detects tags referenced in locals, however, doesn't resolve merged tags
Would it be possible to add this functionality?
Thank you
The text was updated successfully, but these errors were encountered:
A very common pattern for terraform resources is to have common tags defined in locals, and then use terraforms merge function to merge in extra resource-specific tags, per resource
i.e
tags = merge(local.tags, {Name="hasura"})
I can see the linter detects tags referenced in locals, however, doesn't resolve merged tags
Would it be possible to add this functionality?
Thank you
The text was updated successfully, but these errors were encountered: