{
  "trigger" : {
    "schedule": {
      "interval": "100s"
    }
  },
  "condition": {
    "never": {}
  },
  "actions": {
    "work": {
      "email": {
        "to": "email@domain.com",
        "subject": "Test Kibana PDF report",
        "attachments": {
          "test_report.pdf": {
            "http": {
              "content_type": "application/pdf",
              "request": {
                "read_timeout": "100s",
                "scheme": "https",
                "host": "example.com",
                "path":"{{ctx.metadata.report_url}}",
                "port": 8443,
                "auth": {
                  "basic": {
                    "username": "Aladdin",
                    "password": "open sesame"
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}
