Init terraform

This commit is contained in:
Jake Howard
2020-02-21 18:44:25 +00:00
parent 45946741d5
commit a3cc0f7849
7 changed files with 70 additions and 0 deletions

6
terraform/casey_vps.tf Normal file
View File

@ -0,0 +1,6 @@
resource "vultr_server" "casey" {
plan_id = 200
region_id = 8
os_id = 159
hostname = "casey"
}

5
terraform/providers.tf Normal file
View File

@ -0,0 +1,5 @@
provider "vultr" {
api_key = var.vultr_api_key
rate_limit = 700
retry_limit = 3
}

1
terraform/variables.tf Normal file
View File

@ -0,0 +1 @@
variable "vultr_api_key" {}