From 0b647a3562a6db373779f3a7c84f1f13e0e83f49 Mon Sep 17 00:00:00 2001 From: Daniel Compton Date: Wed, 6 Jun 2018 08:39:40 +1200 Subject: [PATCH] Warn about ip_version with ip_address in global forwarding rule (#616) If you try and specify them together you will get this error: google_compute_global_forwarding_rule.your-rule: Error creating Global Forwarding Rule: googleapi: Error 400: Invalid value for field 'resource.ipVersion': 'IPV4'. Both IP Version and IP Address cannot be specified., invalid --- website/docs/r/compute_global_forwarding_rule.html.markdown | 1 + 1 file changed, 1 insertion(+) diff --git a/website/docs/r/compute_global_forwarding_rule.html.markdown b/website/docs/r/compute_global_forwarding_rule.html.markdown index 6670847d..eb96adbd 100644 --- a/website/docs/r/compute_global_forwarding_rule.html.markdown +++ b/website/docs/r/compute_global_forwarding_rule.html.markdown @@ -101,6 +101,7 @@ The following arguments are supported: * `ip_version` - (Optional) The IP Version that will be used by this resource's address. One of `"IPV4"` or `"IPV6"`. + You cannot provide this and `ip_address`. - - -