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