Skip to content

Commit

Permalink
Fix soaking parameters (aws-observability#124)
Browse files Browse the repository at this point in the history
* fix negative soaking

* fix soaking parameters
  • Loading branch information
wyTrivail authored Nov 24, 2020
1 parent 3374da6 commit 246ce72
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions terraform/soaking/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,12 @@ provider "aws" {
module "ec2_setup" {
source = "../ec2_setup"

testcase = var.testcase
testing_ami = var.testing_ami
aoc_version = var.aoc_version
region = var.region

soaking_data_mode = var.soaking_data_mode
soaking_data_rate = var.soaking_data_rate
soaking_data_type = var.soaking_data_type

Expand Down
5 changes: 5 additions & 0 deletions terraform/soaking/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ variable "soaking_data_type" {
default = "otlp"
}

# data type will be emitted. Possible values: metric or trace
variable "soaking_data_mode" {
default = "metric"
}

# options: s3, local
variable "install_package_source" {
default = "s3" # which means we download rpm/dev/msi from s3, the links are defined in the ami map.
Expand Down

0 comments on commit 246ce72

Please sign in to comment.