Skip to content

Commit

Permalink
PR feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
slevenick committed Jul 24, 2020
1 parent 329efe7 commit 608e786
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion products/compute/api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -781,7 +781,7 @@ objects:
name: 'maxUtilization'
description: |
Used when balancingMode is UTILIZATION. This ratio defines the
CPU utilization target for the group. The default is 0.8. Valid
CPU utilization target for the group. Valid
range is [0.0, 1.0].
- !ruby/object:Api::Type::NestedObject
name: 'circuitBreakers'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ resource "google_compute_global_network_endpoint_group" "external_proxy" {
}

resource "google_compute_global_network_endpoint" "proxy" {
global_network_endpoint_group = google_compute_global_network_endpoint_group.external_proxy.name
global_network_endpoint_group = google_compute_global_network_endpoint_group.external_proxy.id
fqdn = "test.example.com"
port = google_compute_global_network_endpoint_group.external_proxy.default_port
}
Expand All @@ -19,6 +19,6 @@ resource "google_compute_backend_service" "<%= ctx[:primary_resource_id] %>" {
custom_request_headers = ["host: ${google_compute_global_network_endpoint.proxy.fqdn}"]

backend {
group = google_compute_global_network_endpoint_group.external_proxy.self_link
group = google_compute_global_network_endpoint_group.external_proxy.id
}
}

0 comments on commit 608e786

Please sign in to comment.