Open
Description
Currently there isn't a way to use the http executor if you need to make a request to a site with a self-signed cert. I can accomplish something similar by using curl and the -k
flag like so:
- name: insecure http request
command: sh
script: |
curl -k -s https://example.com/api/colors
output: RESULT
But it would be great to use the http
executor instead of this.