Skip to content

Commit

Permalink
fix tests_config_ramping_steps name
Browse files Browse the repository at this point in the history
  • Loading branch information
zalbiraw committed May 30, 2024
1 parent 647dba9 commit 6a1cb51
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ module "tests" {
httpbin = var.tests_httpbin_enabled
config = {
executor = var.tests_config_executor
ramping_steps = var.tests_ramping_steps
ramping_steps = var.tests_config_ramping_steps
duration = var.tests_config_duration
rate = var.tests_config_rate
virtual_users = var.tests_config_virtual_users
Expand Down
2 changes: 1 addition & 1 deletion tests/main.tfvars.example
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ tests_timestamp_enabled = true
tests_httpbin_enabled = false

tests_config_executor = "constant-arrival-rate"
tests_ramping_steps = 10
tests_config_ramping_steps = 10
tests_config_duration = 15
tests_config_rate = 20000
tests_config_virtual_users = 50
Expand Down
2 changes: 1 addition & 1 deletion tests/vars.tests.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ variable "tests_config_executor" {
default = "constant-arrival-rate"
}

variable "tests_ramping_steps" {
variable "tests_config_ramping_steps" {
type = number
default = 10
}
Expand Down

0 comments on commit 6a1cb51

Please sign in to comment.