playing with terraform

This commit is contained in:
2023-08-20 13:06:05 -04:00
parent 6198ed9d59
commit e66a4b9a37
6 changed files with 83 additions and 27 deletions

16
terraform/main.tf Normal file
View File

@ -0,0 +1,16 @@
terraform {
required_version = ">= 1.3.0"
required_providers {
digitalocean = {
source = "digitalocean/digitalocean"
version = "~> 2.0"
}
}
}
variable "do_token" {}
provider "digitalocean" {
token = var.do_token
}