feat: add DOKS, managed postgres/redis, WAF rules, external-dns
This commit is contained in:
15
terraform/project.tf
Normal file
15
terraform/project.tf
Normal file
@@ -0,0 +1,15 @@
|
||||
# ─── DO Project assignment ────────────────────────────────────────────────────
|
||||
|
||||
data "digitalocean_project" "main" {
|
||||
name = "lunarfront-infra"
|
||||
}
|
||||
|
||||
resource "digitalocean_project_resources" "main" {
|
||||
project = data.digitalocean_project.main.id
|
||||
resources = [
|
||||
digitalocean_droplet.gitea.urn,
|
||||
digitalocean_kubernetes_cluster.main.urn,
|
||||
digitalocean_database_cluster.postgres.urn,
|
||||
digitalocean_database_cluster.redis.urn,
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user