Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 655 Bytes

README.md

File metadata and controls

29 lines (21 loc) · 655 Bytes

Terraform Module for Google Cloud Postgres

This module creates a Google Cloud SQL Postgres instance.

Example

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
}

Author

This module is maintained by philanton.

License

This module is licensed under the MIT License.