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
Copy file name to clipboardExpand all lines: infrastructure/modules/observability-datasource/README.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,8 @@
15
15
| <aname="input_component"></a> [component](#input\_component)| The name of the terraformscaffold component calling this module |`string`| n/a | yes |
16
16
| <aname="input_default_tags"></a> [default\_tags](#input\_default\_tags)| Default tag map for application to all taggable resources in the module |`map(string)`|`{}`| no |
17
17
| <aname="input_environment"></a> [environment](#input\_environment)| The name of the terraformscaffold environment the module is called for |`string`| n/a | yes |
18
+
| <aname="input_log_group_configuration"></a> [log\_group\_configuration](#input\_log\_group\_configuration)| Configuration for filtering log groups in the link configuration. | <pre>object({<br/> filter = string<br/> })</pre> |`null`| no |
19
+
| <aname="input_metric_configuration"></a> [metric\_configuration](#input\_metric\_configuration)| Configuration for filtering metrics in the link configuration. | <pre>object({<br/> filter = string<br/> })</pre> |`null`| no |
18
20
| <aname="input_name"></a> [name](#input\_name)| A unique name to distinguish this module invocation from others within the same CSI scope |`string`| n/a | yes |
19
21
| <aname="input_oam_sink_id"></a> [oam\_sink\_id](#input\_oam\_sink\_id)| The ID of the Cloudwatch OAM sink in the appropriate observability account. |`string`|`""`| no |
20
22
| <aname="input_observability_account_id"></a> [observability\_account\_id](#input\_observability\_account\_id)| The Observability Account ID that needs access |`string`| n/a | yes |
description="The Observability Account ID that needs access"
57
57
}
58
+
59
+
variable"log_group_configuration" {
60
+
description="Configuration for filtering log groups in the link configuration."
61
+
type=object({
62
+
filter =string
63
+
})
64
+
default=null
65
+
}
66
+
67
+
variable"metric_configuration" {
68
+
description="Configuration for filtering metrics in the link configuration."# https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/oam_link#link_configuration-block
0 commit comments