day 11 part 1 in terraform

This commit is contained in:
2024-12-11 18:53:06 +01:00
parent 023807a701
commit 2beccdd0e6
5 changed files with 230 additions and 0 deletions

View File

@@ -65,3 +65,12 @@ module "day05" {
output "day05_1" {
value = module.day05.part1
}
module "day11" {
source = "./day11"
input = file("../inputs/11.txt")
}
output "day11_1" {
value = module.day11.part1
}