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
sns_topic = "arn:aws:sns:us-east-1:123456123456:sns-to-slack" # < Put your full SNS ARN here, if necessary read from var or a resource
66
+
create_sns_topic = false
67
+
}
68
+
```
69
+
59
70
60
71
## Inputs
61
72
@@ -80,7 +91,8 @@ module "es_alarms" {
80
91
|`monitor_jvm_memory_pressure_too_high`| Enable monitoring of JVM memory pressure is too high | string |`true`| no |
81
92
|`monitor_master_cpu_utilization_too_high`| Enable monitoring of CPU utilization of master nodes are too high. Only enable this when dedicated master is enabled | string |`false`| no |
82
93
|`monitor_master_jvm_memory_pressure_too_high`| Enable monitoring of JVM memory pressure of master nodes are too high. Only enable this wwhen dedicated master is enabled | string |`false`| no |
83
-
|`sns_topic`| SNS topic you want to specify. If leave empty, it will use a prefix and a timestampe appended | string |`""`| no |
94
+
|`create_sns_topic`| Will create an SNS topic, if you set this to false you MUST set `sns_topic` to a FULL ARN | string |`true`| no |
95
+
|`sns_topic`| SNS topic you want to specify. If leave empty, it will use a prefix and a timestamp appended. If `create_sns_topic` is set to false, this MUST be a FULL ARN | string |`""`| no |
84
96
|`sns_topic_postfix`| SNS topic postfix | string |`""`| no |
85
97
|`sns_topic_prefix`| SNS topic prefix | string |`""`| no |
0 commit comments