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
Description: Default prefix for generated tracing tags
244
+
245
+
Type: `string`
246
+
247
+
Default: `"avm_"`
248
+
233
249
## Resources
234
250
235
251
The following resources are used by this module:
@@ -267,6 +283,60 @@ Description: A curated output of the resource groups created by this module.
267
283
Description: A curated output of the virtual networks created by this module.
268
284
269
285
<!-- markdownlint-enable -->
286
+
## Enable or disable tracing tags
287
+
288
+
We're using [BridgeCrew Yor](https://github.com/bridgecrewio/yor) and [yorbox](https://github.com/lonegunmanb/yorbox) to help manage tags consistently across infrastructure as code (IaC) frameworks. In this module you might see tags like:
289
+
290
+
```hcl
291
+
resource "azurerm_resource_group" "rg" {
292
+
location = "eastus"
293
+
name = random_pet.name
294
+
tags = merge(var.tags, (/*<box>*/ (var.tracing_tags_enabled ? { for k, v in /*</box>*/ {
Copy file name to clipboardExpand all lines: _footer.md
+54Lines changed: 54 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,57 @@
1
+
## Enable or disable tracing tags
2
+
3
+
We're using [BridgeCrew Yor](https://github.com/bridgecrewio/yor) and [yorbox](https://github.com/lonegunmanb/yorbox) to help manage tags consistently across infrastructure as code (IaC) frameworks. In this module you might see tags like:
4
+
5
+
```hcl
6
+
resource "azurerm_resource_group" "rg" {
7
+
location = "eastus"
8
+
name = random_pet.name
9
+
tags = merge(var.tags, (/*<box>*/ (var.tracing_tags_enabled ? { for k, v in /*</box>*/ {
0 commit comments