>>106542848
keep mistyping, sorry. If you're doing >>106542848, it'll work, but you should consider managing lifecycles w/ Terraform/Opentofu, those scripts lack idempotent creates so if you run create.sh twice you'll being paying for orphaned infra; tf is good for avoiding this. too lazy to clean up mine but dumping from chatgpt It'll look a bit like
# main.tf
terraform {
required_providers {
digitalocean = {
source = "digitalocean/digitalocean"
version = "~> 2.0"
}
}
}
provider "digitalocean" {
token = var.do_token
Comment too long. Click here to view the full text.