🔧 move tofu configs

This commit is contained in:
2024-09-26 15:30:46 -04:00
parent 398b1e7470
commit 5c489491ad
7 changed files with 67 additions and 63 deletions

View File

@ -0,0 +1,9 @@
resource "digitalocean_droplet" "socrates" {
name = "socrates"
image = "72067660"
size = "s-8vcpu-16gb"
backups = true
ipv6 = true
monitoring = true
}

View File

@ -0,0 +1,4 @@
variable "do_token" {}
provider "digitalocean" {
token = var.do_token
}