Skip to content

Commit

Permalink
Merge d2be936 into 0c29037
Browse files Browse the repository at this point in the history
  • Loading branch information
danawillow authored Dec 3, 2018
2 parents 0c29037 + d2be936 commit dc80ddf
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 30 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,19 +28,6 @@ func TestAccDataSourceRegionInstanceGroup(t *testing.T) {

func testAccDataSourceRegionInstanceGroup_basic(instanceManagerName string) string {
return fmt.Sprintf(`
resource "google_compute_health_check" "autohealing" {
name = "%s"
check_interval_sec = 1
timeout_sec = 1
healthy_threshold = 2
unhealthy_threshold = 10
http_health_check {
request_path = "/"
port = "80"
}
}
resource "google_compute_target_pool" "foo" {
name = "%s"
}
Expand Down Expand Up @@ -75,11 +62,6 @@ resource "google_compute_region_instance_group_manager" "foo" {
port = 80
}
wait_for_instances = true
auto_healing_policies {
health_check = "${google_compute_health_check.autohealing.self_link}"
initial_delay_sec = 10
}
}
data "google_compute_region_instance_group" "data_source" {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -713,10 +713,6 @@ resource "google_compute_instance_group_manager" "foobar" {
base_instance_name = "foobar"
zone = "us-central1-f"
target_size = 1
auto_healing_policies {
health_check = "${google_compute_http_health_check.default.self_link}"
initial_delay_sec = "10"
}
}

resource "google_compute_instance_template" "foobar" {
Expand Down Expand Up @@ -943,10 +939,6 @@ resource "google_compute_instance_group_manager" "foobar" {
base_instance_name = "foobar"
zone = "us-central1-f"
target_size = 1
auto_healing_policies {
health_check = "${google_compute_health_check.default.self_link}"
initial_delay_sec = "10"
}
}

resource "google_compute_instance_template" "foobar" {
Expand Down Expand Up @@ -1008,10 +1000,6 @@ resource "google_compute_instance_group_manager" "foobar" {
base_instance_name = "foobar"
zone = "us-central1-f"
target_size = 1
auto_healing_policies {
health_check = "${google_compute_health_check.default.self_link}"
initial_delay_sec = "10"
}
}

resource "google_compute_instance_template" "foobar" {
Expand Down

0 comments on commit dc80ddf

Please sign in to comment.