Skip to content

Commit 4ef97bc

Browse files
authored
Merge pull request #1971 from philips-labs/develop
release
2 parents ca66aa3 + 2d92906 commit 4ef97bc

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

modules/runners/lambdas/runners/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"@types/jest": "^27.4.1",
2323
"@typescript-eslint/eslint-plugin": "^4.33.0",
2424
"@typescript-eslint/parser": "^4.33.0",
25-
"@vercel/ncc": "^0.33.3",
25+
"@vercel/ncc": "^0.33.4",
2626
"eslint": "^7.32.0",
2727
"eslint-plugin-prettier": "4.0.0",
2828
"jest": "27.5.1",

modules/runners/lambdas/runners/yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1707,10 +1707,10 @@
17071707
"@typescript-eslint/types" "4.33.0"
17081708
eslint-visitor-keys "^2.0.0"
17091709

1710-
"@vercel/ncc@^0.33.3":
1711-
version "0.33.3"
1712-
resolved "https://registry.yarnpkg.com/@vercel/ncc/-/ncc-0.33.3.tgz#aacc6b3ea9f7b175e0c9a18c9b97e4005a2f4fcc"
1713-
integrity sha512-JGZ11QV+/ZcfudW2Cz2JVp54/pJNXbsuWRgSh2ZmmZdQBKXqBtIGrwI1Wyx8nlbzAiEFe7FHi4K1zX4//jxTnQ==
1710+
"@vercel/ncc@^0.33.4":
1711+
version "0.33.4"
1712+
resolved "https://registry.yarnpkg.com/@vercel/ncc/-/ncc-0.33.4.tgz#e44a87511f583b7ba88e4b9ae90eeb7ba252b872"
1713+
integrity sha512-ln18hs7dMffelP47tpkaR+V5Tj6coykNyxJrlcmCormPqRQjB/Gv4cu2FfBG+PMzIfdZp2CLDsrrB1NPU22Qhg==
17141714

17151715
abab@^2.0.3, abab@^2.0.5:
17161716
version "2.0.5"

modules/runners/outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ output "role_scale_down" {
2323
}
2424

2525
output "role_pool" {
26-
value = length(var.pool_config) == 0 ? {} : module.pool.role_pool
26+
value = length(var.pool_config) == 0 ? null : module.pool[0].role_pool
2727
}

outputs.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ output "runners" {
99
role_runner = module.runners.role_runner
1010
role_scale_up = module.runners.role_scale_up
1111
role_scale_down = module.runners.role_scale_down
12+
role_pool = module.runners.role_pool
1213
}
1314
}
1415

0 commit comments

Comments
 (0)