I am new to custodian. using ebs.actions.notify sends SNS email of finding unattached volumes. But the email content is un-readable and base64 decode not change anything. How can I get the email contents readable? Any help is appreciated. John
here is the policy (only topic arn and email address not in real)
---
policies:
- name: ebs-find-unattached
resource: ebs
comments: |
find volumes that are not used.
filters:
- Attachments: []
- "tag:maid_status": present
actions:
- type: notify
to:
subject: "Un-used Volumes found"
template: default
transport:
type: sns
topic: arn:aws:sns:us-east-1:xxxxxxxxxxx:AWSDevOps
...