mirror of
https://github.com/bertptrs/adventofcode.git
synced 2025-12-25 12:50:32 +01:00
13 lines
144 B
HCL
13 lines
144 B
HCL
terraform {
|
|
|
|
}
|
|
|
|
module "day01" {
|
|
source = "./day01"
|
|
input = file("../inputs/01.txt")
|
|
}
|
|
|
|
output "day01_1" {
|
|
value = module.day01.part1
|
|
}
|