Skip to content

Commit

Permalink
Merge pull request #481 from nautobot/u/joewesch-479-env-vars
Browse files Browse the repository at this point in the history
Adds env fallback for validate_certs
  • Loading branch information
joewesch authored Jan 9, 2025
2 parents fe69ccb + dfd1077 commit 0f7a166
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/module_utils/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -539,7 +539,7 @@
token=dict(type="str", required=True, no_log=True, fallback=(env_fallback, ["NAUTOBOT_TOKEN"])),
state=dict(required=False, default="present", choices=["present", "absent"]),
query_params=dict(required=False, type="list", elements="str"),
validate_certs=dict(type="raw", default=True),
validate_certs=dict(type="raw", default=True, fallback=(env_fallback, ["NAUTOBOT_VALIDATE_CERTS"])),
api_version=dict(type="str", required=False),
)

Expand Down

0 comments on commit 0f7a166

Please sign in to comment.