Skip to content

Commit 2177c3f

Browse files
authored
[Hyperdrive] Add changelog for MySQL custom TLS/SSL certificate support (#29097)
* [Hyperdrive] Add changelog for MySQL custom TLS/SSL certificate support
1 parent 3874b50 commit 2177c3f

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
title: Hyperdrive now supports custom TLS/SSL certificates for MySQL
3+
description: Configure custom server certificates (VERIFY_CA, VERIFY_IDENTITY) and client certificates (mTLS) for MySQL connections through Hyperdrive.
4+
products:
5+
- hyperdrive
6+
date: 2026-03-19
7+
---
8+
9+
Hyperdrive now supports custom TLS/SSL certificates for MySQL databases, bringing the same certificate options previously available for PostgreSQL to MySQL connections.
10+
11+
You can now configure:
12+
13+
- **Server certificate verification** with `VERIFY_CA` or `VERIFY_IDENTITY` SSL modes to verify that your MySQL database server's certificate is signed by the expected certificate authority (CA).
14+
- **Client certificates** (mTLS) for Hyperdrive to authenticate itself to your MySQL database with credentials beyond username and password.
15+
16+
Create a Hyperdrive configuration with custom certificates for MySQL:
17+
18+
```bash
19+
# Upload a CA certificate
20+
npx wrangler cert upload certificate-authority --ca-cert your-ca-cert.pem --name your-custom-ca-name
21+
22+
# Create a Hyperdrive with VERIFY_IDENTITY mode
23+
npx wrangler hyperdrive create your-hyperdrive-config \
24+
--connection-string="mysql://user:password@hostname:port/database" \
25+
--ca-certificate-id <CA_CERT_ID> \
26+
--sslmode VERIFY_IDENTITY
27+
```
28+
29+
For more information, refer to [SSL/TLS certificates for Hyperdrive](/hyperdrive/configuration/tls-ssl-certificates-for-hyperdrive/) and [MySQL TLS/SSL modes](/hyperdrive/examples/connect-to-mysql/).

0 commit comments

Comments
 (0)