Skip to content

Commit

Permalink
Promote region health check to GA
Browse files Browse the repository at this point in the history
  • Loading branch information
Ty Larrabee committed Dec 11, 2019
1 parent 463f8df commit 692d0f5
Show file tree
Hide file tree
Showing 12 changed files with 0 additions and 13 deletions.
1 change: 0 additions & 1 deletion products/compute/api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9003,7 +9003,6 @@ objects:
should be mapped to.
- !ruby/object:Api::Resource
name: 'RegionHealthCheck'
min_version: beta
kind: 'compute#healthCheck'
base_url: projects/{{project}}/regions/{{region}}/healthChecks
collection_url_key: 'items'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
resource "google_compute_region_health_check" "http-region-health-check" {
provider = google-beta
name = "<%= ctx[:vars]['health_check_name'] %>"

timeout_sec = 1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
resource "google_compute_region_health_check" "http2-region-health-check" {
provider = google-beta
name = "<%= ctx[:vars]['health_check_name'] %>"

timeout_sec = 1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
resource "google_compute_region_health_check" "http2-region-health-check" {
provider = google-beta
name = "<%= ctx[:vars]['health_check_name'] %>"
description = "Health check via http2"

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
resource "google_compute_region_health_check" "http-region-health-check" {
provider = google-beta
name = "<%= ctx[:vars]['health_check_name'] %>"
description = "Health check via http"

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
resource "google_compute_region_health_check" "https-region-health-check" {
provider = google-beta
name = "<%= ctx[:vars]['health_check_name'] %>"

timeout_sec = 1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
resource "google_compute_region_health_check" "https-region-health-check" {
provider = google-beta
name = "<%= ctx[:vars]['health_check_name'] %>"
description = "Health check via https"

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
resource "google_compute_region_health_check" "ssl-region-health-check" {
provider = google-beta
name = "<%= ctx[:vars]['health_check_name'] %>"

timeout_sec = 1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
resource "google_compute_region_health_check" "ssl-region-health-check" {
provider = google-beta
name = "<%= ctx[:vars]['health_check_name'] %>"
description = "Health check via ssl"

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
resource "google_compute_region_health_check" "tcp-region-health-check" {
provider = google-beta
name = "<%= ctx[:vars]['health_check_name'] %>"

timeout_sec = 1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
resource "google_compute_region_health_check" "tcp-region-health-check" {
provider = google-beta
name = "<%= ctx[:vars]['health_check_name'] %>"
description = "Health check via tcp"

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<% autogen_exception -%>
package google

<% unless version == 'ga' -%>
import (
"fmt"
"regexp"
Expand Down Expand Up @@ -343,4 +342,3 @@ resource "google_compute_region_health_check" "foobar" {
}
`, hckName)
}
<% end -%>

0 comments on commit 692d0f5

Please sign in to comment.