-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support link configurations for oam-link (#32)
- Loading branch information
Showing
7 changed files
with
68 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,14 +8,14 @@ This module creates following resources. | |
|
||
| Name | Version | | ||
|------|---------| | ||
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.6 | | ||
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 4.63 | | ||
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.8 | | ||
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.58 | | ||
|
||
## Providers | ||
|
||
| Name | Version | | ||
|------|---------| | ||
| <a name="provider_aws"></a> [aws](#provider\_aws) | 5.51.0 | | ||
| <a name="provider_aws"></a> [aws](#provider\_aws) | 5.58.0 | | ||
|
||
## Modules | ||
|
||
|
@@ -36,6 +36,8 @@ This module creates following resources. | |
| <a name="input_name"></a> [name](#input\_name) | (Required) The name of the CloudWatch OAM link. | `string` | n/a | yes | | ||
| <a name="input_sink"></a> [sink](#input\_sink) | (Required) The ARN of the sink to use to create this link. | `string` | n/a | yes | | ||
| <a name="input_account_label"></a> [account\_label](#input\_account\_label) | (Optional) A label to help identify your source account. In the monitoring account, the account label is displayed with data from that source account. The account label is displayed in charts and search experiences to help you identify account context. Support use following template variables. Defaults to `$AccountName`.<br> - `$AccountName`: Account name used to identify accounts.<br> - `$AccountEmail`: Email address used to identify accounts. (i.e. [email protected])<br> - `$AccountEmailNoDomain`: Email address without domain (i.e. without @amazon.com) used to identify accounts. | `string` | `"$AccountName"` | no | | ||
| <a name="input_log_group_configuration"></a> [log\_group\_configuration](#input\_log\_group\_configuration) | (Optional) A configuration for filtering which log groups are to send log events from the source account to the monitoring account. `log_group_configuration` as defined below.<br> (Optional) `filter` - Filter string that specifies which log groups are to share their log events with the monitoring account. | <pre>object({<br> filter = optional(string, "")<br> })</pre> | `{}` | no | | ||
| <a name="input_metric_configuration"></a> [metric\_configuration](#input\_metric\_configuration) | (Optional) A configuration for filtering which metric namespaces are to be shared from the source account to the monitoring account. `log_group_configuration` as defined below.<br> (Optional) `filter` - Filter string that specifies which metrics are to be shared with the monitoring account. | <pre>object({<br> filter = optional(string, "")<br> })</pre> | `{}` | no | | ||
| <a name="input_module_tags_enabled"></a> [module\_tags\_enabled](#input\_module\_tags\_enabled) | (Optional) Whether to create AWS Resource Tags for the module informations. | `bool` | `true` | no | | ||
| <a name="input_resource_group_description"></a> [resource\_group\_description](#input\_resource\_group\_description) | (Optional) The description of Resource Group. | `string` | `"Managed by Terraform."` | no | | ||
| <a name="input_resource_group_enabled"></a> [resource\_group\_enabled](#input\_resource\_group\_enabled) | (Optional) Whether to create Resource Group to find and group AWS resources which are created by this module. | `bool` | `true` | no | | ||
|
@@ -50,6 +52,8 @@ This module creates following resources. | |
| <a name="output_account_label"></a> [account\_label](#output\_account\_label) | A label to help identify your source account. | | ||
| <a name="output_arn"></a> [arn](#output\_arn) | The ARN of the CloudWatch OAM link. | | ||
| <a name="output_id"></a> [id](#output\_id) | The ID of the CloudWatch OAM link. | | ||
| <a name="output_log_group_configuration"></a> [log\_group\_configuration](#output\_log\_group\_configuration) | A configuration for filtering which log groups are to send log events from the source account to the monitoring account. | | ||
| <a name="output_metric_configuration"></a> [metric\_configuration](#output\_metric\_configuration) | A configuration for filtering which metric namespaces are to be shared from the source account to the monitoring account. | | ||
| <a name="output_name"></a> [name](#output\_name) | The name of CloudWatch OAM link. | | ||
| <a name="output_sink"></a> [sink](#output\_sink) | The information of the sink for this link. | | ||
| <a name="output_telemetry_types"></a> [telemetry\_types](#output\_telemetry\_types) | A set of the telemetry types that the source account shares with the monitoring account. | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
terraform { | ||
required_version = ">= 1.6" | ||
required_version = ">= 1.8" | ||
|
||
required_providers { | ||
aws = { | ||
source = "hashicorp/aws" | ||
version = ">= 4.63" | ||
version = ">= 5.58" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
terraform { | ||
required_version = ">= 1.6" | ||
required_version = ">= 1.8" | ||
|
||
required_providers { | ||
aws = { | ||
source = "hashicorp/aws" | ||
version = ">= 4.63" | ||
version = ">= 5.58" | ||
} | ||
} | ||
} |