Skip to content

Commit 2664721

Browse files
committed
cleanup and rebase
1 parent a360c70 commit 2664721

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

examples/ephemeral/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ module "runners" {
5858
enable_ephemeral_runners = true
5959

6060
# # Example of simple pool usages
61-
# simple_pool_runner_owner = "philips-test-runners"
61+
# simple_pool_runner_owner = "my-org"
6262
# simple_pool_config = [{
6363
# pool_size = 2
6464
# schedule_expression = "cron(*/2 * * * ? *)"

main.tf

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -92,12 +92,12 @@ module "runners" {
9292
s3_bucket_runner_binaries = module.runner_binaries.bucket
9393
s3_location_runner_binaries = local.s3_action_runner_url
9494

95-
runner_os = var.runner_os
96-
instance_types = var.instance_types
97-
instance_targeet_capacity_type = var.instance_targeet_capacity_type
98-
instance_allocation_strategy = var.instance_allocation_strategy
99-
instance_max_spot_price = var.instance_max_spot_price
100-
block_device_mappings = var.block_device_mappings
95+
runner_os = var.runner_os
96+
instance_types = var.instance_types
97+
instance_target_capacity_type = var.instance_target_capacity_type
98+
instance_allocation_strategy = var.instance_allocation_strategy
99+
instance_max_spot_price = var.instance_max_spot_price
100+
block_device_mappings = var.block_device_mappings
101101

102102
runner_architecture = var.runner_architecture
103103
ami_filter = var.ami_filter

modules/runners/simple-pool.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ resource "aws_lambda_function" "simple_pool" {
3131
SUBNET_IDS = join(",", var.subnet_ids)
3232
ENABLE_EPHEMERAL_RUNNERS = var.enable_ephemeral_runners
3333
INSTANCE_TYPES = join(",", var.instance_types)
34-
INSTANCE_TARGET_CAPACITY_TYPE = var.instance_targeet_capacity_type
34+
INSTANCE_TARGET_CAPACITY_TYPE = var.instance_target_capacity_type
3535
INSTANCE_MAX_SPOT_PRICE = var.instance_max_spot_price
3636
INSTANCE_ALLOCATION_STRATEGY = var.instance_allocation_strategy
3737
}

0 commit comments

Comments
 (0)