Initial commit

This commit is contained in:
Mike Conrad
2024-09-24 19:44:31 -04:00
parent 29f0cb5fee
commit 43f6820f4a
4 changed files with 107 additions and 0 deletions

13
terraform.tf Normal file
View File

@ -0,0 +1,13 @@
terraform {
required_providers {
digitalocean = {
source = "digitalocean/digitalocean"
version = "2.41.0"
}
}
}
provider "digitalocean" {
token = var.do_token
}