Skip to content

layer-3/terraform-google-cloud-postgres

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages