diff --git a/README.md b/README.md index 19eb77d..676e83f 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,7 @@ module "terraform-aws-xlt-loadtest" { | [allowed\_networks](#input\_allowed\_networks) | The allowed networks IP/32 | `list(string)` | n/a | yes | | [name](#input\_name) | The name used for further interpolation | `string` | n/a | yes | | [password](#input\_password) | The password to use | `string` | n/a | yes | -| [ami](#input\_ami) | The AMI used for the agents | `string` | `"ami-0b701f8f19be222c6"` | no | +| [ami](#input\_ami) | The AMI used for the agents | `string` | `"ami-036cc6f041deb429b"` | no | | [grafana\_ami](#input\_grafana\_ami) | The grafana ami (required if grafana\_enabled is set to true) | `string` | `"ami-0fc36223101444802"` | no | | [grafana\_enabled](#input\_grafana\_enabled) | Do we create a custom Grafana instance | `bool` | `false` | no | | [instance\_count](#input\_instance\_count) | The amount of instances to start | `string` | `2` | no | diff --git a/variables.tf b/variables.tf index 273cc85..22ac33a 100644 --- a/variables.tf +++ b/variables.tf @@ -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 }