We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e47304f commit 99be5f0Copy full SHA for 99be5f0
1 file changed
src/confcom/azext_confcom/lib/opa.py
@@ -22,7 +22,9 @@
22
def opa_get():
23
24
opa_fetch_resp = requests.get(
25
- f"https://openpolicyagent.org/downloads/v1.10.1/opa_{platform.system().lower()}_amd64")
+ f"https://openpolicyagent.org/downloads/v1.10.1/opa_{platform.system().lower()}_amd64",
26
+ verify=True,
27
+ )
28
opa_fetch_resp.raise_for_status()
29
30
assert hashlib.sha256(opa_fetch_resp.content).hexdigest() == _expected_sha256
0 commit comments