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
This commit is contained in:
Daniel Compton 2018-06-06 08:39:40 +12:00 committed by Vincent Roseberry
parent 1f9c9aabfa
commit 0b647a3562

View File

@ -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`.
- - -