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
{{ message }}
This repository was archived by the owner on Sep 12, 2023. It is now read-only.
# We can not only check the var.topic_arn !="" because of the Terraform error: The "count" value depends on resource attributes that cannot be determined until apply, so Terraform cannot predict how many instances will be created.
36
+
variable"create_topic" {
37
+
type=bool
38
+
description="Create SNS topic? If set to false you must set topic_arn as well!"
39
+
default=true
40
+
}
41
+
42
+
variable"topic_arn" {
43
+
type=string
44
+
description="Optional SNS topic ARN if create_topic := false (usually the output of the modules marbot-monitoring-basic or marbot-standalone-topic)."
0 commit comments