Skip to content

Commit

Permalink
Promote region health check to GA (#2825)
Browse files Browse the repository at this point in the history
Merged PR #2825.
  • Loading branch information
Ty Larrabee authored and modular-magician committed Dec 11, 2019
1 parent 249ad77 commit 1a509e2
Show file tree
Hide file tree
Showing 15 changed files with 3 additions and 16 deletions.
2 changes: 1 addition & 1 deletion build/terraform
2 changes: 1 addition & 1 deletion build/terraform-beta
2 changes: 1 addition & 1 deletion build/terraform-mapper
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 1a509e2

Please sign in to comment.