mirror of
https://github.com/LukeHagar/website.git
synced 2025-12-07 04:22:09 +00:00
18 lines
289 B
HCL
18 lines
289 B
HCL
terraform {
|
|
required_providers {
|
|
digitalocean = {
|
|
source = "digitalocean/digitalocean"
|
|
version = "~> 2.0"
|
|
}
|
|
}
|
|
cloud {
|
|
organization = "appwrite"
|
|
workspaces {
|
|
name = "production-homepage"
|
|
}
|
|
}
|
|
}
|
|
|
|
provider "digitalocean" {
|
|
token = var.DO_TOKEN
|
|
} |