Add a cloudsql instance.

This commit is contained in:
Tom Alexander
2021-07-12 00:06:49 -04:00
parent c8d5c0bbd1
commit edb515da09
2 changed files with 47 additions and 0 deletions

View File

@@ -241,3 +241,11 @@ output "gke_connect_command" {
description = "Command to run to connect to the kubernetes cluster."
value = "gcloud container clusters get-credentials ${google_container_cluster.primary.name} --region ${var.region} --project ${var.project}"
}
#################### SQL ##################################
module "cloudsql" {
source = "../modules/cloudsql"
project = var.project
region = var.region
}