{{ define "home" -}} SQS Redriver

SQS Queues {{ if .prefix }} matching prefix: {{ .prefix }} {{ end}}

{{ range .rows }} {{ template "home-row" . }} {{ end }}
Grayed out queues in the left column are accepted by the given DLQ, but are not configured to use a DLQ. This is a configuration error in SQS.
Queue name DLQ name
acquisition-reviews-sender-submit-dlq
payment-payin-work-dlq
{{ end }} {{ define "home-row" }} {{ template "home-cell" (index . 0) }} {{ template "home-cell" (index . 1) }} {{ end }} {{ define "home-cell" }} {{ if .Message }} {{ .Message }} {{else if .Link }} {{ .Link.Text }} {{ else }} {{end}} {{ end }}