use correct fields for bigtable test (#2353)

<!-- This change is generated by MagicModules. -->
/cc @danawillow
This commit is contained in:
The Magician 2018-10-29 12:42:12 -07:00 committed by Nathan McKinley
parent ae09a200c7
commit b16e60ce05

View File

@ -157,9 +157,11 @@ func testAccBigtableTable(instanceName, tableName string) string {
return fmt.Sprintf(`
resource "google_bigtable_instance" "instance" {
name = "%s"
cluster_id = "%s"
zone = "us-central1-b"
instance_type = "DEVELOPMENT"
cluster {
cluster_id = "%s"
zone = "us-central1-b"
}
}
resource "google_bigtable_table" "table" {
@ -173,9 +175,11 @@ func testAccBigtableTable_splitKeys(instanceName, tableName string) string {
return fmt.Sprintf(`
resource "google_bigtable_instance" "instance" {
name = "%s"
cluster_id = "%s"
zone = "us-central1-b"
instance_type = "DEVELOPMENT"
cluster {
cluster_id = "%s"
zone = "us-central1-b"
}
}
resource "google_bigtable_table" "table" {