Can someone please provide steps how to secure the gRPC port. I am able to connect using both grpc_secure=true and grpc_secure=false . My http connection is secured.
client = weaviate.connect_to_custom(
http_host=‘hostname’, # Hostname for the HTTP API connection
http_port=8181,
http_secure=True,
grpc_host=‘hostname’,
grpc_port=50051,
grpc_secure=False,
skip_init_checks=True,
auth_credentials=Auth.api_key(“###############”) # API key for authentication
)