Skip to content

Commit f663a94

Browse files
author
P4T12ICK
committed
aws storage default to gp3
1 parent 7f5f65b commit f663a94

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

terraform/aws/modules/generic-server/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ variable "private_ip" {
2727
variable "root_volume_type" {
2828
description = "Root volume type."
2929
type = string
30-
default = "gp2"
30+
default = "gp3"
3131
}
3232

3333
variable "root_volume_size" {

terraform/aws/modules/router/resources.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ resource "aws_instance" "router" {
3636
associate_public_ip_address = true
3737

3838
root_block_device {
39-
volume_type = "gp2"
39+
volume_type = "gp3"
4040
volume_size = "20"
4141
delete_on_termination = "true"
4242
encrypted = "true"

terraform/aws/modules/zeek-server/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ variable "private_ip" {
3232
variable "root_volume_type" {
3333
description = "Root volume type."
3434
type = string
35-
default = "gp2"
35+
default = "gp3"
3636
}
3737

3838
variable "root_volume_size" {

0 commit comments

Comments
 (0)