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.33k stars 1.74k forks source link

Add a new network_tier type FIXED_STANDARD to google_compute_address resource #11961

Open evgenii-rodionov-affise opened 2 years ago

evgenii-rodionov-affise commented 2 years ago

Community Note

Add a new network_tier type (FIXED_STANDARD)

We use a new network type FIXED_STANDARD at creation google_compute_address, but resource google_compute_address support only PREMIUM or STANDARD values.

New or Affected Resource(s)

Potential Terraform Configuration

#google_compute_address_argo
resource "google_compute_address" "affise-argo" {
  name         = "affise-argo"
  region       = "europe-west4"
  network_tier = "FIXED_STANDARD"
}

References

rileykarson commented 2 years ago

Note: we probably want to avoid validating these at all

sanghaniJ commented 1 year ago

b/263548317

sanghaniJ commented 1 year ago

I've gone through this issue and the request is regarding support for a new network type, FIXED_STANDARD to the field network_tier in resource compute_address.