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.36k stars 1.75k forks source link

container_cluster: Improve error message when both Network Policy and GKE Dataplane V2 is enabled #11334

Open jcanseco opened 2 years ago

jcanseco commented 2 years ago

Community Note

Description

According to this warning in GKE Documentation, if users want to enable GKE Dataplane V2 on a GKE cluster, they must not explicitly enable or disable network policy enforcement, or the request will fail with error Enabling NetworkPolicy for clusters with DatapathProvider=ADVANCED_DATAPATH is not allowed.

This means that if google_container_cluster has datapath_provider = ADVANCED_DATAPATH, the user must omit the network_policy and addons_config.network_policy_config fields. If either field is specified, then the user gets the error above.

Request: Can we put up a better error message if the user makes the above mistake? The current error message does not make it too obvious which particular fields need to be omitted and the fact that the user has to omit two fields (Example user confusion: https://github.com/GoogleCloudPlatform/k8s-config-connector/issues/616).

Example better error message (for reference only): If datapath_provider is set to ADVANCED_DATAPATH, the fields network_policy and addons_config.network_policy_config must not be specified.

New or Affected Resource(s)

References

b/359989210

rileykarson commented 2 years ago

@jcanseco can we request the API returns a better error? The googleapi prefix in there means we're just parroting back what they said to us.

jcanseco commented 2 years ago

Yes we can do that too: b/226464091

roaks3 commented 1 year ago

Adding the review label, as I'm not sure if it warrants forwarding at this point (b/226464091 is still waiting)

ggtisc commented 3 months ago

Even today when it is attempting to include the next different arguments for a google_container_cluster resource it results in different errors, and the terraform registry documentation and API are not intuitive or have almost a basic example of how to manage it: