This module creates a Google Cloud SQL Postgres instance.
The following example creates a simple Google Cloud SQL Postgres 12 instance with 2 CPUs and 4GB of RAM.
module "cloud_postgresql" {
source = "layer-3/cloud-postgres/google"
version = "1.0.0"
project = "my-project"
network = "my-network"
region = "us-central1"
deployment_id = "my-postgres"
postgres_version = "12"
cpu_count = 2
ram_mb = 4096
}
This module is maintained by philanton.
This module is licensed under the MIT License.