terraform-provider-google/google/resource_compute_route_generated_test.go

61 lines
1.6 KiB
Go
Raw Normal View History

2018-09-24 22:35:43 +00:00
// ----------------------------------------------------------------------------
//
// *** AUTO GENERATED CODE *** AUTO GENERATED CODE ***
//
// ----------------------------------------------------------------------------
//
// This file is automatically generated by Magic Modules and manual
// changes will be clobbered when the file is regenerated.
//
// Please read more about how to change this file in
// .github/CONTRIBUTING.md.
//
// ----------------------------------------------------------------------------
package google
import (
"fmt"
"testing"
"github.com/hashicorp/terraform/helper/acctest"
"github.com/hashicorp/terraform/helper/resource"
)
2018-10-24 19:06:09 +00:00
func TestAccComputeRoute_RouteBasicExample(t *testing.T) {
2018-09-24 22:35:43 +00:00
t.Parallel()
resource.Test(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
Providers: testAccProviders,
CheckDestroy: testAccCheckComputeRouteDestroy,
Steps: []resource.TestStep{
{
2018-10-24 19:06:09 +00:00
Config: testAccComputeRoute_RouteBasicExample(acctest.RandString(10)),
2018-09-24 22:35:43 +00:00
},
{
ResourceName: "google_compute_route.default",
ImportState: true,
ImportStateVerify: true,
},
},
})
}
2018-10-24 19:06:09 +00:00
func testAccComputeRoute_RouteBasicExample(val string) string {
2018-09-24 22:35:43 +00:00
return fmt.Sprintf(`
resource "google_compute_route" "default" {
name = "network-route-%s"
dest_range = "15.0.0.0/24"
network = "${google_compute_network.default.name}"
next_hop_ip = "10.132.1.5"
2018-09-24 22:35:43 +00:00
priority = 100
}
resource "google_compute_network" "default" {
name = "compute-network-%s"
}
`, val, val,
2018-09-24 22:35:43 +00:00
)
}