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.32k stars 1.72k forks source link

Add support for Advanced Networking to GKE Clusters and Node Pools #16425

Open otherguy opened 11 months ago

otherguy commented 11 months ago

Community Note

Description

While https://github.com/hashicorp/terraform-provider-google/issues/8735 added this feature for google_compute_instance, this request is to add support for:

New or Affected Resource(s)

Potential Terraform Configuration

resource "google_container_node_pool" "tier_1_pool" {
  name       = "tier-1-node-pool"
  ..

  node_config {
    machine_type = "n2-standard-32"

    // Other node configuration ...

    network_performance_configs {
      total_egress_bandwidth_tier = "TIER_1"
    }
  }
}

References

b/310896761

otherguy commented 7 months ago

Any update on this?

otherguy commented 1 month ago

confused-high-quality-gif