Skip to content

Commit

Permalink
Upstream changes to google_compute_global_network_endpoint docs (#3776)…
Browse files Browse the repository at this point in the history
… (#6845)

Signed-off-by: Modular Magician <[email protected]>
  • Loading branch information
modular-magician authored Jul 23, 2020
1 parent d81af62 commit c2fff2b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
3 changes: 3 additions & 0 deletions .changelog/3776.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:none

```
13 changes: 4 additions & 9 deletions website/docs/r/compute_global_network_endpoint.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -41,20 +41,15 @@ resource "google_compute_global_network_endpoint" "default-endpoint" {
global_network_endpoint_group = google_compute_global_network_endpoint_group.neg.name
fqdn = "www.example.com"
port = google_compute_global_network_endpoint_group.neg.default_port
ip_address = google_compute_instance.endpoint-instance.network_interface[0].network_ip
port = 90
ip_address = "8.8.8.8"
}
resource "google_compute_global_network_endpoint_group" "neg" {
name = "my-lb-neg"
default_port = "90"
name = "my-lb-neg"
default_port = "90"
network_endpoint_type = "INTERNET_IP_PORT"
}
resource "google_compute_network" "default" {
name = ""
auto_create_subnetworks = false
}
```

## Argument Reference
Expand Down

0 comments on commit c2fff2b

Please sign in to comment.