You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With the AWS CLI the environment variable AWS_CA_BUNDLE specifies the path to a certificate bundle to use for HTTPS certificate validation. The EB CLI does not take this env property into consideration when running. Neither does it support the use of --ca-bundle switch which is also supported by the AWS CLI.
A couple of options are available to resolve the error (both not ideal)
SSLError - SSL validation failed for https://elasticbeanstalk.us-west-2.amazonaws.com/ [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate in certificate chain
Specify the switch --no-verify-ssl which will skip SSL certificate verification.
The EB CLI uses the certifi package for SSL verification. Manually overriding the cacert.pem within the package on the filesystem resolves the error.
The text was updated successfully, but these errors were encountered:
With the AWS CLI the environment variable AWS_CA_BUNDLE specifies the path to a certificate bundle to use for HTTPS certificate validation. The EB CLI does not take this env property into consideration when running. Neither does it support the use of --ca-bundle switch which is also supported by the AWS CLI.
A couple of options are available to resolve the error (both not ideal)
SSLError - SSL validation failed for https://elasticbeanstalk.us-west-2.amazonaws.com/ [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate in certificate chain
The text was updated successfully, but these errors were encountered: