mirror of
https://github.com/bertptrs/adventofcode.git
synced 2025-12-25 21:00:31 +01:00
Implement 2024 day 13 in terraform
This commit is contained in:
@@ -79,6 +79,19 @@ output "day11_2" {
|
||||
value = module.day11.part2
|
||||
}
|
||||
|
||||
module "day13" {
|
||||
source = "./day13"
|
||||
input = file("../inputs/13.txt")
|
||||
}
|
||||
|
||||
output "day13_1" {
|
||||
value = module.day13.part1
|
||||
}
|
||||
|
||||
output "day13_2" {
|
||||
value = module.day13.part2
|
||||
}
|
||||
|
||||
module "day19" {
|
||||
source = "./day19"
|
||||
input = file("../inputs/19.txt")
|
||||
|
||||
Reference in New Issue
Block a user