postgres tf module

This commit is contained in:
Maximilian_Schlenz 2025-07-07 10:04:39 +02:00
parent 4e9fc826bf
commit 6dcbef56e6
4 changed files with 109 additions and 0 deletions

33
postgres/main.tf Normal file
View file

@ -0,0 +1,33 @@
locals {
user_count = length(var.users)
db_count = length(var.databases)
}
resource "stackit_postgresflex_instance" "this" {
project_id = var.project_id
name = var.name
version = var.ver
flavor = var.flavor
storage = var.storage
replicas = var.replicas
acl = var.acl
backup_schedule = var.backup_schedule
}
resource "stackit_postgresflex_user" "user" {
count = local.user_count
project_id = var.project_id
instance_id = stackit_postgresflex_instance.this.instance_id
username = var.users[count.index].username
roles = var.users[count.index].roles
}
resource "stackit_postgresflex_database" "db" {
count = local.db_count
project_id = var.project_id
instance_id = stackit_postgresflex_instance.this.instance_id
name = var.databases[count.index].name
owner = var.databases[count.index].owner
}

11
postgres/outputs.tf Normal file
View file

@ -0,0 +1,11 @@
output "instance_id" {
value = stackit_postgresflex_instance.this.instance_id
}
output "user_ids" {
value = stackit_postgresflex_user.user[*].user_id
}
output "database_ids" {
value = stackit_postgresflex_database.db[*].database_id
}

9
postgres/providers.tf Normal file
View file

@ -0,0 +1,9 @@
terraform {
required_version = ">= 1.9.0"
required_providers {
stackit = {
source = "stackitcloud/stackit"
version = "0.56.0"
}
}
}

56
postgres/variables.tf Normal file
View file

@ -0,0 +1,56 @@
variable "project_id" {
type = string
}
variable "name" {
type = string
}
variable "ver" {
type = number
}
variable "flavor" {
type = object({
cpu = number,
ram = number
})
}
variable "storage" {
type = object({
class = string,
size = number
})
}
variable "replicas" {
type = number
}
variable "acl" {
type = list(string)
}
variable "backup_schedule" {
type = string
}
variable "users" {
description = "List of users"
type = list(object({
username = string
roles = set(string)
}))
default = []
}
variable "databases" {
description = "List of databases"
type = list(object({
name = string
owner = string
}))
default = []
}