Skip to content

Commit 4efebab

Browse files
Fix TestAccVPCAccessConnectorDatasource_basic (#8766) (#6167)
Signed-off-by: Modular Magician <[email protected]>
1 parent 539c45c commit 4efebab

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.changelog/8766.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:none
2+
3+
```

google-beta/services/appengine/resource_app_engine_standard_app_version_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ resource "google_vpc_access_connector" "bar" {
177177
project = google_project.my_project.project_id
178178
name = "bar"
179179
region = "us-central1"
180-
ip_cidr_range = "10.8.0.0/28"
180+
ip_cidr_range = "10.8.0.16/28"
181181
network = "default"
182182
}
183183

google-beta/services/vpcaccess/data_source_vpc_access_connector_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ func testAccVPCAccessConnectorDatasourceConfig(suffix string) string {
3939
return fmt.Sprintf(`
4040
resource "google_vpc_access_connector" "connector" {
4141
name = "vpc-con-test-%s"
42-
ip_cidr_range = "10.8.0.0/28"
42+
ip_cidr_range = "10.8.0.32/28"
4343
network = "default"
4444
region = "us-central1"
4545
}

0 commit comments

Comments
 (0)