Skip to content

Commit

Permalink
EC2: Upgrade from gp2 to gp3
Browse files Browse the repository at this point in the history
  • Loading branch information
pdostal committed Jul 31, 2024
1 parent 588b79c commit 20cb8ce
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion data/publiccloud/terraform/ec2.tf
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ variable "extra-disk-size" {
}

variable "extra-disk-type" {
default = "gp2"
default = "gp3"
}

variable "create-extra-disk" {
Expand Down Expand Up @@ -112,6 +112,7 @@ resource "aws_instance" "openqa" {
ebs_block_device {
device_name = "/dev/sda1"
volume_size = 20
volume_type = "gp3"
}

timeouts {
Expand Down

0 comments on commit 20cb8ce

Please sign in to comment.