Create dummy module

This commit is contained in:
Ben Martin 2024-06-03 21:34:19 +01:00
commit 1c94485587
No known key found for this signature in database
GPG key ID: 11936493893207E4
7 changed files with 156 additions and 0 deletions

12
prod/provider.tf Normal file
View file

@ -0,0 +1,12 @@
terraform {
required_providers {
nomad = {
source = "hashicorp/nomad"
version = "2.2.0"
}
}
}
provider "nomad" {
address = "http://hestia.lan:4646"
}