Provision walker VPS

This commit is contained in:
Jake Howard 2021-04-19 21:16:56 +01:00
parent 03affd269f
commit 3976dd607d
Signed by: jake
GPG key ID: 57AFB45680EDD477

14
terraform/walker_vps.tf Normal file
View file

@ -0,0 +1,14 @@
module "walker_firewall" {
source = "./vultr_firewall/"
description = "walker"
ports = []
}
resource "vultr_instance" "walker" {
plan = "vhf-1c-1gb"
region = "lhr"
hostname = "walker"
firewall_group_id = module.walker_firewall.firewall_group.id
}