Implement day 5 part 1 in terraform

I'm pretty sure part 2 is impossible
This commit is contained in:
2024-12-07 12:39:37 +01:00
parent edb0767201
commit 2d49907692
4 changed files with 70 additions and 0 deletions

View File

@@ -56,3 +56,12 @@ output "day03_2" {
# output "day04_2" {
# value = module.day04.part2
# }
module "day05" {
source = "./day05"
input = file("../inputs/05.txt")
}
output "day05_1" {
value = module.day05.part1
}