Kubernetes服务无法使用Istio Sidecar访问s3

Just wondering if anyone has any luck/solution when using AWS SDK to access AWS resource such as S3 when service injected with Istio sidecar.

As Istio's document points out:

  1. traffic will go through Istio sidecar, you will need white list the DNS or IPs.
  2. https is not available. Can only do by changing the format to something like "http://www.google.com:443"

However, AWS SDK handles the https connection hence I can't rewrite the URL. Subsequently, I'll get an "http: server gave HTTP response to HTTPS client" error.

Many thanks.