Skip to content

Commit 1b03a39

Browse files
CCM-10257: Implement Eventpub in Core
1 parent d5b90e2 commit 1b03a39

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

infrastructure/modules/eventpub/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
| <a name="input_control_plane_bus_arn"></a> [control\_plane\_bus\_arn](#input\_control\_plane\_bus\_arn) | Data plane event bus arn | `string` | n/a | yes |
1717
| <a name="input_data_plane_bus_arn"></a> [data\_plane\_bus\_arn](#input\_data\_plane\_bus\_arn) | Data plane event bus arn | `string` | n/a | yes |
1818
| <a name="input_default_tags"></a> [default\_tags](#input\_default\_tags) | Default tag map for application to all taggable resources in the module | `map(string)` | `{}` | no |
19-
| <a name="input_dlq_alarm_prefix"></a> [dlq\_alarm\_prefix](#input\_dlq\_alarm\_prefix) | Prefix for dlq alarm | `string` | `"RELIABILITY: "` | no |
19+
| <a name="input_dlq_alarm_prefix"></a> [dlq\_alarm\_prefix](#input\_dlq\_alarm\_prefix) | Prefix for dlq alarm description - used in Core to trigger Teams Alarms, e.g 'RELIABILITY: ' or 'SECURITY: ' | `string` | `null` | no |
2020
| <a name="input_enable_event_cache"></a> [enable\_event\_cache](#input\_enable\_event\_cache) | Enable caching of events to an S3 bucket | `bool` | `false` | no |
2121
| <a name="input_enable_sns_delivery_logging"></a> [enable\_sns\_delivery\_logging](#input\_enable\_sns\_delivery\_logging) | Enable SNS Delivery Failure Notifications | `bool` | `false` | no |
2222
| <a name="input_environment"></a> [environment](#input\_environment) | The name of the terraformscaffold environment the module is called for | `string` | n/a | yes |
@@ -30,7 +30,7 @@
3030
| <a name="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 |
3131
| <a name="input_project"></a> [project](#input\_project) | The name of the terraformscaffold project calling the module | `string` | n/a | yes |
3232
| <a name="input_region"></a> [region](#input\_region) | The AWS Region | `string` | n/a | yes |
33-
| <a name="input_sns_delivery_alarm_prefix"></a> [sns\_delivery\_alarm\_prefix](#input\_sns\_delivery\_alarm\_prefix) | Prefix for SNS Delivery alarm | `string` | `"RELIABILITY: "` | no |
33+
| <a name="input_sns_delivery_alarm_prefix"></a> [sns\_delivery\_alarm\_prefix](#input\_sns\_delivery\_alarm\_prefix) | Prefix for SNS Delivery alarm description - used in Core to trigger Teams Alarms, e.g 'RELIABILITY: ' or 'SECURITY: ' | `string` | `null` | no |
3434
| <a name="input_sns_success_logging_sample_percent"></a> [sns\_success\_logging\_sample\_percent](#input\_sns\_success\_logging\_sample\_percent) | Enable SNS Delivery Successful Sample Percentage | `number` | `0` | no |
3535
## Modules
3636

infrastructure/modules/eventpub/variables.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -117,12 +117,12 @@ variable "iam_permissions_boundary_arn" {
117117

118118
variable "dlq_alarm_prefix" {
119119
type = string
120-
description = "Prefix for dlq alarm"
121-
default = "RELIABILITY: "
120+
description = "Prefix for dlq alarm description - used in Core to trigger Teams Alarms, e.g 'RELIABILITY: ' or 'SECURITY: '"
121+
default = null
122122
}
123123

124124
variable "sns_delivery_alarm_prefix" {
125125
type = string
126-
description = "Prefix for SNS Delivery alarm"
127-
default = "RELIABILITY: "
126+
description = "Prefix for SNS Delivery alarm description - used in Core to trigger Teams Alarms, e.g 'RELIABILITY: ' or 'SECURITY: '"
127+
default = null
128128
}

0 commit comments

Comments
 (0)