13 lines
354 B
Terraform
13 lines
354 B
Terraform
|
provider "digitalocean" {
|
||
|
token = var.do_token
|
||
|
spaces_access_id = var.spaces_access_id
|
||
|
spaces_secret_key = var.spaces_secret_key
|
||
|
}
|
||
|
|
||
|
resource "digitalocean_project" "jeremy_dormitzer" {
|
||
|
name = "jeremy.dormitzer"
|
||
|
environment = "Production"
|
||
|
description = "Personal infrastructure"
|
||
|
purpose = "Personal infrastructure"
|
||
|
}
|