Skip to content

Commit

Permalink
Changed volume size from 5 to 35GB for Windows EC2 tests (aws-observa…
Browse files Browse the repository at this point in the history
…bility#331)

*Description of changes:*
Windows EC2 tests were failing due to capacity issues. Updated the
terraform script to increase the capacity and did a test run and it's
now passing:

https://github.com/aws-observability/aws-application-signals-test-framework/actions/runs/12243621218/job/34153583025

By submitting this pull request, I confirm that my contribution is made
under the terms of the Apache 2.0 license.
  • Loading branch information
AsakerMohd authored Dec 9, 2024
1 parent dc59ca4 commit f89f516
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions terraform/dotnet/ec2/windows/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ resource "aws_instance" "main_service_instance" {
get_password_data = true

root_block_device {
volume_size = 5
volume_size = 35
}

tags = {
Expand Down Expand Up @@ -123,7 +123,7 @@ resource "aws_instance" "remote_service_instance" {
get_password_data = true

root_block_device {
volume_size = 5
volume_size = 35
}

tags = {
Expand Down

0 comments on commit f89f516

Please sign in to comment.