Logstash to Azure IoT hub via http/https

Any one using IoT hub as an output in logstash. I know that there is a plugin logstash-output-iothub plugin to leverage logstash to ship to IoT hub.

output {
  iothub {
    connection_string => "{set your iot hub connection string}"
  }
}

This by default connect to 8883 port.

8883 is blocked in our firewalls, and i wanted to use port 443.

How to leverage this communication using https ?

Can i use something like this ?

output {
  iothub {
    connection_string => "{https://set your iot hub connection string}"
  }
}

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.