CrowdStrike / ansible_collection_falcon

Comprehensive toolkit for streamlining your interactions with the CrowdStrike Falcon platform.
https://galaxy.ansible.com/ui/repo/published/crowdstrike/falcon/
GNU General Public License v3.0
95 stars 57 forks source link

Fix examples regarding falcon_aph/aph #447

Closed quasd closed 6 months ago

quasd commented 7 months ago

Affected roles:

Affected modules:

All the documentation tells you to configure proxy with falcon_aph/aph with protocol included.

falcon_aph: "http://{{ proxy__host }}"

However if you do that you will get the following

CrowdStrike(4): Connect: Unable to resolve http://<Proxy FQDN retracted>, getaddrinfo returned -2

To get proxy working you need to use following.

falcon_aph: "{{ proxy__host }}"

And the connection will work with proxy

CrowdStrike(4): trying to connect to <Proxy FQDN retracted>:8080
CrowdStrike(4): ProxyConnect: Connected successfully to "<retracted CS server name>:443" via proxy "<Proxy FQDN retracted>:8080" 

This pull request aims to fix the documentation to reflect reality.

*used incorrect email in commit so had to redo.