hashicorp / terraform-provider-google

Terraform Provider for Google Cloud Platform
https://registry.terraform.io/providers/hashicorp/google/latest/docs
Mozilla Public License 2.0
2.25k stars 1.7k forks source link

be able to set disk throughput in ressource google_container_aws_node_pool #13819

Open mick1627 opened 1 year ago

mick1627 commented 1 year ago

Community Note

Description

New or Affected Resource(s)

Be able to set root_volume throughput => https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/ebs_volume#throughput

We need to increase throughput on our aws node pool for performance issue.

Potential Terraform Configuration

# Propose what you think the configuration to take advantage of this feature should look like.
# We may not use it verbatim, but it's helpful in understanding your intent.

resource "google_container_aws_node_pool" "primary" {
...

    root_volume {
      iops        = 3000
      volume_type = "GP3"
      throughput = 250
    }

References

hdp617 commented 11 months ago

Throughput is now supported https://registry.terraform.io/providers/hashicorp/google/latest/docs/resources/container_aws_node_pool#throughput.