feat: add DOKS, managed postgres/redis, WAF rules, external-dns
Some checks failed
Terraform / terraform (push) Failing after 32s
Test / test (push) Successful in 1s

This commit is contained in:
Ryan Moon
2026-04-02 17:25:13 -05:00
parent 155ef0345e
commit 3471374cb6
9 changed files with 195 additions and 8 deletions

View File

@@ -2,3 +2,28 @@ output "gitea_ip" {
description = "Public IP of the Gitea droplet"
value = digitalocean_droplet.gitea.ipv4_address
}
output "k8s_cluster_id" {
description = "DOKS cluster ID"
value = digitalocean_kubernetes_cluster.main.id
}
output "postgres_host" {
description = "Managed Postgres host"
value = digitalocean_database_cluster.postgres.host
}
output "postgres_port" {
description = "Managed Postgres port"
value = digitalocean_database_cluster.postgres.port
}
output "redis_host" {
description = "Managed Redis/Valkey host"
value = digitalocean_database_cluster.redis.host
}
output "redis_port" {
description = "Managed Redis/Valkey port"
value = digitalocean_database_cluster.redis.port
}