Open abejotaR opened 6 months ago
In relation to this error, I have noticed that httpx does not recognize the Certification Authority (CA) present at the operating system level. In my experience, by standing up a Passbolt instance with a self-signed Certificate Authority (CA) and adding it to the list of trusted certificates, I managed to run a curl command to that instance. However, when trying to run either plugin, neither recognizes the added CA.
Description: It is necessary to correct the expression
variables.get("verify")
tovariables.get("environment")
in the code fileplugins/lookup/passbolt_inventory.py
, specifically on line 95. It is important to note that in the fileplugins/lookup/passbolt.py
, the variable is correctly defined.Proposed Steps:
plugins/lookup/passbolt_inventory.py
to correct the variable to "environment".