mirror of
https://github.com/coder/coder.git
synced 2025-07-06 15:41:45 +00:00
64 lines
1.7 KiB
HCL
64 lines
1.7 KiB
HCL
resource "google_sql_database_instance" "db" {
|
|
name = var.name
|
|
region = var.region
|
|
database_version = var.cloudsql_version
|
|
deletion_protection = false
|
|
|
|
depends_on = [google_service_networking_connection.private_vpc_connection]
|
|
|
|
settings {
|
|
tier = var.cloudsql_tier
|
|
activation_policy = "ALWAYS"
|
|
availability_type = "ZONAL"
|
|
|
|
location_preference {
|
|
zone = var.zone
|
|
}
|
|
|
|
database_flags {
|
|
name = "max_connections"
|
|
value = var.cloudsql_max_connections
|
|
}
|
|
|
|
ip_configuration {
|
|
ipv4_enabled = false
|
|
private_network = google_compute_network.vpc.id
|
|
}
|
|
|
|
insights_config {
|
|
query_insights_enabled = true
|
|
query_string_length = 1024
|
|
record_application_tags = false
|
|
record_client_address = false
|
|
}
|
|
}
|
|
}
|
|
|
|
resource "google_sql_database" "coder" {
|
|
project = var.project_id
|
|
instance = google_sql_database_instance.db.id
|
|
name = "${var.name}-coder"
|
|
# required for postgres, otherwise db fails to delete
|
|
deletion_policy = "ABANDON"
|
|
}
|
|
|
|
resource "google_sql_user" "coder" {
|
|
project = var.project_id
|
|
instance = google_sql_database_instance.db.id
|
|
name = "${var.name}-coder"
|
|
type = "BUILT_IN"
|
|
password = random_password.coder-postgres-password.result
|
|
# required for postgres, otherwise user fails to delete
|
|
deletion_policy = "ABANDON"
|
|
}
|
|
|
|
resource "google_sql_user" "prometheus" {
|
|
project = var.project_id
|
|
instance = google_sql_database_instance.db.id
|
|
name = "${var.name}-prometheus"
|
|
type = "BUILT_IN"
|
|
password = random_password.prometheus-postgres-password.result
|
|
# required for postgres, otherwise user fails to delete
|
|
deletion_policy = "ABANDON"
|
|
}
|