<@ULVA73B9P> Is there a way to integrate my compan...
# ask-marvin
c
@Marvin Is there a way to integrate my company's certificates, so we are able to connect to the Prefect api?
m
To integrate your company's certificates for connecting to the Prefect API, you can configure your environment to trust the certificate. Here's a concise guide: 1. System Bundle: Add your certificate to the system bundle and configure the
SSL_CERT_FILE
environment variable to point to that bundle. 2. Environment Variables: If the certificate is not part of your system bundle, you might set
PREFECT_API_TLS_INSECURE_SKIP_VERIFY
to
True
to disable certificate verification. However, this is insecure and should only be used for testing purposes. 3. Proxy Configuration: Prefect supports proxy communication via environment variables. Set
HTTPS_PROXY
and
SSL_CERT_FILE
in your environment if you're using proxies. You can also use
HTTP_PROXY
,
ALL_PROXY
, and
NO_PROXY
to manage proxy settings. For more details, you can refer to the Prefect documentation. If you need more specific guidance on setting these up, feel free to ask.