mirror of
https://github.com/puppetmaster/typhoon.git
synced 2025-07-22 17:11:35 +02:00
Add disk_type variable for EBS volume type on AWS
* Change EBS volume type from `standard` ("prior generation) to `gp2`. Prometheus alerts are tuned for SSDs * Other platforms have fast enough disks by default
This commit is contained in:
@ -42,7 +42,7 @@ resource "aws_launch_configuration" "worker" {
|
||||
|
||||
# storage
|
||||
root_block_device {
|
||||
volume_type = "standard"
|
||||
volume_type = "${var.disk_type}"
|
||||
volume_size = "${var.disk_size}"
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user