Add terraform proof of concept for DO domain management

This commit is contained in:
2023-04-04 12:21:27 -04:00
committed by Ethan Paul
parent 3bcbee1b85
commit 80015c6535
5 changed files with 386 additions and 0 deletions

12
terra/main.tf Normal file
View File

@@ -0,0 +1,12 @@
terraform {
backend "pg" {
conn_str = "postgres://terraform@cluster.lab.enp.one:32421/terraform"
}
required_providers {
digitalocean = {
source = "digitalocean/digitalocean"
version = "~> 2.0"
}
}
}