File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -237,6 +237,12 @@ const (
237237 DefaultGrafanaVersion = "1.2.0"
238238)
239239
240+ // monitor
241+ const (
242+ DefaultTmpVpcId = "vpc-axrsmmrv"
243+ DefaultTmpSubnetId = "subnet-b23ua6gk"
244+ )
245+
240246/*
241247---------------------------------------------------
242248The following are common test case used as templates.
Original file line number Diff line number Diff line change @@ -105,10 +105,10 @@ func testAccCheckInstanceExists(r string) resource.TestCheckFunc {
105105
106106const testInstanceVar = tcacctest .DefaultAzVariable + `
107107variable "vpc_id" {
108- default = "` + tcacctest .DefaultEMRVpcId + `"
108+ default = "` + tcacctest .DefaultTmpVpcId + `"
109109}
110110variable "subnet_id" {
111- default = "` + tcacctest .DefaultEMRSubnetId + `"
111+ default = "` + tcacctest .DefaultTmpSubnetId + `"
112112}
113113`
114114const testInstance_basic = testInstanceVar + `
You can’t perform that action at this time.
0 commit comments