Terraform Azure PostgreSQL Database Module

This Terraform module creates a PostgreSQL database in Azure with a configurable setup.

⚙️ Features

  • Customizable Database Configuration:
    • Character set and collation can be specified
    • Prevents accidental deletion with prevent_destroy
  • Modular and Reusable:
    • Defined via variables.tf
    • Outputs database details for further use

🚀 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 database details:
    terraform output
    
    1

📚 Notes

  • Character Set: Defaults to UTF8, configurable via charset variable.
  • Collation: Defaults to English_United States.1252, configurable via collation variable.
  • Deletion Protection: prevent_destroy is enabled to avoid accidental data loss.

🛠 Configuration

Requirements

NameVersion
terraform>= 1.5.0
azurerm4.22.0

Modules

No modules.

Resources

NameType
azurerm_postgresql_database.exampleopen in new windowresource

Inputs

NameDescriptionTypeDefaultRequired
charsetCharacter set for the databasestring"UTF8"no
collationCollation for the databasestring"English_United States.1252"no
database_nameThe name of the PostgreSQL databasestringn/ayes
resource_group_nameThe name of the resource group where the database will be createdstringn/ayes
server_nameThe name of the PostgreSQL serverstringn/ayes
subscription_idthe Azure subscription idstringn/ayes

Outputs

NameDescription
database_idThe ID of the created PostgreSQL database
database_nameThe name of the created PostgreSQL database

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-database/buildingblock
1