mirror of
https://github.com/puppetmaster/typhoon.git
synced 2025-07-22 11:21:34 +02:00
Add disk_iops variable for AWS
* Setting disk_iops is required for disk_type io1 * https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSVolumeTypes.html#EBSVolumeTypes
This commit is contained in:
committed by
Dalton Hubble
parent
3b44972d78
commit
0be4673e44
@ -30,6 +30,7 @@ resource "aws_instance" "controllers" {
|
||||
root_block_device {
|
||||
volume_type = "${var.disk_type}"
|
||||
volume_size = "${var.disk_size}"
|
||||
iops = "${var.disk_iops}"
|
||||
}
|
||||
|
||||
# network
|
||||
|
Reference in New Issue
Block a user