terraform-provider-google/google/resource_compute_region_disk_generated_test.go

72 lines
1.8 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 TestAccComputeRegionDisk_RegionDiskBasicExample(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: testAccCheckComputeRegionDiskDestroy,
Steps: []resource.TestStep{
{
2018-10-24 19:06:09 +00:00
Config: testAccComputeRegionDisk_RegionDiskBasicExample(acctest.RandString(10)),
2018-09-24 22:35:43 +00:00
},
{
ResourceName: "google_compute_region_disk.regiondisk",
ImportState: true,
ImportStateVerify: true,
},
},
})
}
2018-10-24 19:06:09 +00:00
func testAccComputeRegionDisk_RegionDiskBasicExample(val string) string {
2018-09-24 22:35:43 +00:00
return fmt.Sprintf(`
resource "google_compute_region_disk" "regiondisk" {
name = "my-region-disk-%s"
snapshot = "${google_compute_snapshot.snapdisk.self_link}"
type = "pd-ssd"
region = "us-central1"
replica_zones = ["us-central1-a", "us-central1-f"]
}
resource "google_compute_disk" "disk" {
name = "my-disk-%s"
image = "debian-cloud/debian-9"
size = 50
type = "pd-ssd"
zone = "us-central1-a"
}
resource "google_compute_snapshot" "snapdisk" {
name = "my-snapshot-%s"
source_disk = "${google_compute_disk.disk.name}"
zone = "us-central1-a"
}
`, val, val, val,
)
}