Skip to content

Commit

Permalink
added working ami
Browse files Browse the repository at this point in the history
  • Loading branch information
mraeeschachar committed Sep 11, 2024
1 parent cc8bc3f commit 004b2ec
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 1 deletion.
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ variable "instance_type" {

variable "ami" {
description = "The AMI used for the agents"
default = "ami-0b701f8f19be222c6" # list of recent XLT AMIs https://github.com/Xceptance/XLT/releases
default = "ami-036cc6f041deb429b" # list of recent XLT AMIs https://github.com/Xceptance/XLT/releases
type = string
}

Expand Down
25 changes: 25 additions & 0 deletions workdir/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions workdir/main.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
provider "aws" {
region = "eu-central-1"
}
module "cluster" {
source = "/Users/muhammad.chachar/Flaconi/load-testing/terraform-aws-xlt-loadtest"
name = "xlt"
instance_count = 2
instance_count_per_lb = 20
allowed_networks = ["185.28.184.128/27", "89.247.174.55/32"]
password = "optileDev2020"
grafana_enabled = false
}

#output "lb_host" { value = module.cluster.lb_host }
output "mastercontroller_properties" {value = module.cluster.master_controller_properties}
output "reporting_host" {value = module.cluster.reporting_host}
#output "vpc_nat_eips" { value = module.cluster.vpc_nat_eips }

0 comments on commit 004b2ec

Please sign in to comment.