PostgreSQL is an open source object-relational database management system. It’s highly extensible, highly scalable, and has many features. PostgreSQL supports data replication across multiple data centers.
This reference architecture shows a typical three-node deployment of a PostgreSQL cluster on Oracle Cloud Infrastructure Compute instances. In this architecture, the servers are configured in master and standby configuration and use streaming replication.
For details of the architecture, see Deploy a PostgreSQL database
-
Permission to
manage
the following types of resources in your Oracle Cloud Infrastructure tenancy:vcns
,internet-gateways
,route-tables
,security-lists
,subnets
, andinstances
. -
Quota to create the following resources: 1 VCN, 1 subnet, 1 Internet Gateway, 1 route rules, and 3 compute instances (1 primary master PostgreSQL instance and 2 Standby instances of PostgreSQL).
If you don't have the required permissions and quota, contact your tenancy administrator. See Policy Reference, Service Limits, Compartment Quotas.
-
If you aren't already signed in, when prompted, enter the tenancy and user credentials.
-
Review and accept the terms and conditions.
-
Select the region where you want to deploy the stack.
-
Follow the on-screen prompts and instructions to create the stack.
-
After creating the stack, click Terraform Actions, and select Plan.
-
Wait for the job to be completed, and review the plan.
To make any changes, return to the Stack Details page, click Edit Stack, and make the required changes. Then, run the Plan action again.
-
If no further changes are necessary, return to the Stack Details page, click Terraform Actions, and select Apply.
Now, you'll want a local copy of this repo. You can make that with the commands:
git clone https://github.com/oracle-devrel/terraform-oci-arch-postgresql
cd terraform-oci-arch-postgresql
ls
First off, you'll need to do some pre-deploy setup. That's all detailed here.
Secondly, create a terraform.tfvars
file and populate with the following information:
# Authentication
tenancy_ocid = "<tenancy_ocid>"
user_ocid = "<user_ocid>"
fingerprint = "<finger_print>"
private_key_path = "<pem_private_key_path>"
# Region
region = "<oci_region>"
# availability Domain
availability_domain_name = "<availability_domain_name>" # for example GrCH:US-ASHBURN-AD-1
# Compartment
compartment_ocid = "<compartment_ocid>"
# PostgreSQL Password
postgresql_password = "<postgresql_password>"
# PostgreSQL Version (supported versions 9.6, 10, 11, 12, 13)
postgresql_version = "<postgresql_version>"
# Optional first HotStandby
postgresql_deploy_hotstandby1 = true
postgresql_hotstandby1_ad = "<availability_domain_name>" # for example GrCH:US-ASHBURN-AD-2
postgresql_hotstandby1_fd = "<postgresql_hotstandby1_fd>" # for example FAULT-DOMAIN-2
# Optional second HotStandby
postgresql_deploy_hotstandby2 = true
postgresql_hotstandby2_ad = "<availability_domain_name>" # for example GrCH:US-ASHBURN-AD-3
postgresql_hotstandby2_fd = "<postgresql_hotstandby2_fd>" # for example FAULT-DOMAIN-3
Run the following commands:
terraform init
terraform plan
terraform apply
When you no longer need the deployment, you can run this command to destroy the resources:
terraform destroy
It's possible to utilize this repository as remote module, providing the necessary inputs:
module "arch-postgresql" {
source = "github.com/oracle-devrel/terraform-oci-arch-postgresql"
tenancy_ocid = "<tenancy_ocid>"
user_ocid = "<user_ocid>"
fingerprint = "<finger_print>"
private_key_path = "<private_key_path>"
region = "<oci_region>"
availability_domain_name = "<availability_domain_name>"
compartment_ocid = "<compartment_ocid>"
use_existing_vcn = true # You can inject your own VCN and subnet
create_in_private_subnet = true # Subnet should be associated with NATGW and proper Route Table.
postgresql_vcn = oci_core_virtual_network.my_vcn.id # Injected VCN
postgresql_subnet = oci_core_subnet.my_private_subnet.id # Injected Private Subnet
postgresql_password = "<password>"
postgresql_deploy_hotstandby1 = true # if we want to setup hotstandby1
postgresql_deploy_hotstandby2 = true # if we want to setup hotstandby2
}
This project is open source. Please submit your contributions by forking this repository and submitting a pull request! Oracle appreciates any contributions that are made by the open source community.
Copyright (c) 2024 Oracle and/or its affiliates.
Licensed under the Universal Permissive License (UPL), Version 1.0.
See LICENSE for more details.