forked from smallpdf/autospotting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
autospotting.tf
20 lines (18 loc) · 1.09 KB
/
autospotting.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
module "autospotting" {
source = "./autospotting"
autospotting_allowed_instance_types = "${var.asg_allowed_instance_types}"
autospotting_disallowed_instance_types = "${var.asg_disallowed_instance_types}"
autospotting_min_on_demand_number = "${var.asg_min_on_demand_number}"
autospotting_min_on_demand_percentage = "${var.asg_min_on_demand_percentage}"
autospotting_on_demand_price_multiplier = "${var.asg_on_demand_price_multiplier}"
autospotting_spot_price_buffer_percentage = "${var.asg_spot_price_buffer_percentage}"
autospotting_spot_product_description = "${var.asg_spot_product_description}"
autospotting_bidding_policy = "${var.asg_bidding_policy}"
autospotting_regions_enabled = "${var.asg_regions_enabled}"
autospotting_tag_filters = "${var.asg_tag_filters}"
lambda_zipname = "${var.lambda_zipname}"
lambda_runtime = "${var.lambda_runtime}"
lambda_memory_size = "${var.lambda_memory_size}"
lambda_timeout = "${var.lambda_timeout}"
lambda_run_frequency = "${var.lambda_run_frequency}"
}