terraform-aws-ec2-instance
terraform-aws-ec2-instance copied to clipboard
correct default for ebs_throughput
Currently the default value for ebs_throughput is out of range (125 - 1000) and this causes the following error
│ Error: expected throughput to be in the range (125 - 1000), got 0 │ │ with module.instance.aws_ebs_volume.default[0], │ on .terraform/modules/instance/main.tf line 178, in resource "aws_ebs_volume" "default": │ 178: throughput = local.ebs_throughput
This will fix issue #137
closes #137