Terraform Azure PostgreSQL Deployment

This Terraform project deploys a cost-effective Azure PostgreSQL database with minimal resources and security-conscious configuration.

⚙️ Features

  • Cheapest SKU: B_Standard_B1ms (1 vCore, 2 GB RAM)
  • Minimal Storage: 5 GB
  • Security-Optimized:
    • Public network access disabled
    • Enforced SSL/TLS encryption (TLS1_2)
    • Auto-grow disabled to prevent unexpected costs
    • Automated Admin Password Generation with the random provider
  • Modular and Configurable via variables.tf

🚀 Deployment

Prerequisites

  • Terraform (≥ 1.3.0)
  • Azure CLI authenticated (az login)

Steps

  1. Initialize Terraform:
    terraform init
    
    1
  2. Preview the deployment:
    terraform plan
    
    1
  3. Apply the configuration:
    terraform apply -auto-approve
    
    1
  4. Retrieve PostgreSQL details:
    terraform output
    
    1

📚 Notes

  • Backup Retention: Minimum is 7 days (Azure limitation).
  • Geo-Redundant Backup: Disabled to minimize costs.
  • For production:
    • Consider enabling auto-grow.
    • Use Key Vault for secrets.
    • Restrict IPs via firewall rules.

🛠 Configuration

Requirements

NameVersion
terraform>= 1.5.0
azurerm4.22.0
random3.7.1

Modules

No modules.

Resources

NameType
azurerm_postgresql_server.exampleopen in new windowresource
azurerm_resource_group.exampleopen in new windowresource
random_password.psql_admin_passwordopen in new windowresource

Inputs

NameDescriptionTypeDefaultRequired
administrator_loginAdministrator username for PostgreSQLstring"psqladmin"no
auto_grow_enabledEnable auto-grow for storageboolfalseno
backup_retention_daysBackup retention in daysnumber7no
geo_redundant_backup_enabledEnable geo-redundant backupsboolfalseno
locationAzure regionstring"West Europe"no
postgresql_server_nameName of the PostgreSQL serverstringn/ayes
postgresql_versionPostgreSQL versionstring"11"no
public_network_access_enabledEnable public network accessboolfalseno
resource_group_nameName of the Azure resource groupstringn/ayes
sku_nameThe SKU name for the PostgreSQL serverstring"B_Gen5_1"no
ssl_enforcement_enabledEnforce SSL connectionbooltrueno
ssl_minimal_tls_version_enforcedMinimum TLS versionstring"TLS1_2"no
storage_mbStorage size in MBnumber5120no
subscription_idthe Azure subscription idstringn/ayes

Outputs

NameDescription
postgresql_admin_usernameThe administrator username for PostgreSQL
postgresql_fqdnThe fully qualified domain name of the PostgreSQL server
postgresql_server_nameThe name of the PostgreSQL server
postgresql_versionThe PostgreSQL version
psql_admin_passwordThe administrator password for PostgreSQL
resource_group_nameThe name of the resource group in which the PostgreSQL database is created

Source code & Installation

The source code of this kit module can be found hereopen in new window

Run the following command to install the kit module:

collie kit import azure/buildingblocks/postgresql/buildingblock
1