Files
website/terraform/environments/production/provider.tf
2024-08-08 01:37:18 +04:00

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
}