mirror of
https://github.com/luigieai/homelab.git
synced 2025-06-04 23:16:35 -03:00
15 lines
250 B
HCL
15 lines
250 B
HCL
|
|
terraform {
|
|
required_providers {
|
|
nomad = {
|
|
source = "hashicorp/nomad"
|
|
version = "2.0.0-rc.1"
|
|
}
|
|
}
|
|
required_version = ">= 0.14"
|
|
}
|
|
|
|
# Configure the Nomad provider.
|
|
provider "nomad" {
|
|
address = "http://192.168.15.92:4646"
|
|
}
|