mirror of
https://github.com/bertptrs/adventofcode.git
synced 2025-12-27 05:40:32 +01:00
Implement day 8 2024 in Terraform
This commit is contained in:
@@ -66,6 +66,19 @@ output "day05_1" {
|
||||
value = module.day05.part1
|
||||
}
|
||||
|
||||
module "day08" {
|
||||
source = "./day08"
|
||||
input = file("../inputs/08.txt")
|
||||
}
|
||||
|
||||
output "day08_1" {
|
||||
value = module.day08.part1
|
||||
}
|
||||
|
||||
output "day08_2" {
|
||||
value = module.day08.part2
|
||||
}
|
||||
|
||||
module "day11" {
|
||||
source = "./day11"
|
||||
input = file("../inputs/11.txt")
|
||||
|
||||
Reference in New Issue
Block a user