Enforce SSL/TLS encryption

This sample demonstrates how to enforce SSL/TLS encryption for a Cloud SQL for MySQL instance.

Explore further

For detailed documentation that includes this code sample, see the following:

Code sample

Terraform

To learn how to apply or remove a Terraform configuration, see Basic Terraform commands. For more information, see the Terraform provider reference documentation.

resource "google_sql_ssl_cert" "mysql_client_cert" {
  common_name = "mysql_common_name"
  instance    = google_sql_database_instance.mysql_instance.name
}

What's next

To search and filter code samples for other Google Cloud products, see the Google Cloud sample browser.