24 lines
419 B
HCL
24 lines
419 B
HCL
include "root" {
|
|
path = find_in_parent_folders("root.hcl")
|
|
expose = true
|
|
}
|
|
|
|
include "config" {
|
|
path = "${get_repo_root()}/config/config.hcl"
|
|
expose = true
|
|
}
|
|
|
|
locals {
|
|
config = include.config.locals.config
|
|
}
|
|
|
|
terraform {
|
|
source = "../../modules/prowlarr"
|
|
}
|
|
|
|
inputs = {
|
|
indexers = local.config.indexers
|
|
download_clients = local.config.download_clients
|
|
tags = local.config.tags
|
|
}
|