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
list(object({ name = string # The name of the monitor monitor_type = optional(string, "DIMENSIONAL") # The type of monitor to create monitor_dimension = optional(string, "DIMENSIONAL") # The dimension to monitor monitor_specification = optional(string, null) # The specification to monitor notify = optional(object({ frequency = string # The frequency of notifications threshold_expression = optional(any, null) # The threshold expression to use for notifications }), { frequency = "DAILY" }) }))
object({ email = optional(object({ addresses = list(string) }), null) slack = optional(object({ secret_name = optional(string, null) # An optional secret name in the AWS Secrets Manager, containing this information lambda_name = optional(string, "cost-anomaly-notification") # The name of the Lambda function to use for notifications webhook_url = optional(string, null) # The URL of the Slack webhook to use for notifications, required if secret_name is not provided }), null) })