We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33fb872 commit d62014dCopy full SHA for d62014d
CHANGELOG.md
@@ -51,6 +51,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
51
- updated upload and download artifacts actions to v4
52
53
### Fixed
54
+- include labels in the config resources only if they are explicitly defined in the config
55
- always assert state type when creating resources from state
56
- do not break long file content lines
57
- source TF_WORKING_DIR from env helper instead of process.env in locals helper
terraform/locals.tf
@@ -138,7 +138,7 @@ locals {
138
name = name
139
})
140
]
141
- }
+ } if contains(keys(config), "labels")
142
] : lower("${item.repository}") => item
143
}
144
0 commit comments