jdormit-infra/prod/justin-ghost-site/main.tf
2020-12-03 16:26:28 -05:00

14 lines
324 B
HCL

provider "digitalocean" {
token = var.do_token
spaces_access_id = var.spaces_access_id
spaces_secret_key = var.spaces_secret_key
}
resource "digitalocean_droplet" "justin_ghost_site" {
name = "justin-ghost-site"
image = "53296993"
region = "nyc3"
size = "s-1vcpu-1gb"
backups = true
}