homelab/terraform-home/providers.tf

16 lines
250 B
Terraform
Raw Permalink Normal View History

2023-08-09 21:37:50 -03:00
terraform {
required_providers {
nomad = {
2023-12-04 22:29:52 -03:00
source = "hashicorp/nomad"
2023-08-09 21:37:50 -03:00
version = "2.0.0-rc.1"
}
}
required_version = ">= 0.14"
2023-12-04 22:29:52 -03:00
}
# Configure the Nomad provider.
provider "nomad" {
address = "http://192.168.15.92:4646"
}