Skip to content

Commit f875f79

Browse files
authored
fix(vpn): [128047963] fix e2e test (#3558)
* add * add * add
1 parent 2d4789c commit f875f79

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

tencentcloud/services/vpn/data_source_tc_vpn_connections_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ func TestAccTencentCloudVpnConnectionsDataSource(t *testing.T) {
3232
const testAccTencentCloudVpnConnectionsDataSourceConfig_basic = `
3333
resource "tencentcloud_vpn_customer_gateway" "cgw" {
3434
name = "terraform_test"
35-
public_ip_address = "3.2.3.3"
35+
public_ip_address = "1.16.16.16"
3636
}
3737
3838
# Create VPC and Subnet

tencentcloud/services/vpn/resource_tc_vpn_customer_gateway_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ func testAccCheckVpnCustomerGatewayExists(n string) resource.TestCheckFunc {
200200
const testAccVpnCustomerGatewayConfig = `
201201
resource "tencentcloud_vpn_customer_gateway" "my_cgw" {
202202
name = "terraform_test"
203-
public_ip_address = "1.1.1.2"
203+
public_ip_address = "1.15.15.15"
204204
205205
tags = {
206206
test = "tf"
@@ -210,7 +210,7 @@ resource "tencentcloud_vpn_customer_gateway" "my_cgw" {
210210
const testAccVpnCustomerGatewayConfigUpdate = `
211211
resource "tencentcloud_vpn_customer_gateway" "my_cgw" {
212212
name = "terraform_update"
213-
public_ip_address = "1.1.1.2"
213+
public_ip_address = "1.15.15.15"
214214
215215
tags = {
216216
test = "test"

tencentcloud/services/vpn/resource_tc_vpn_gateway_route_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ func testAccCheckVpnGatewayRouteExists(n string) resource.TestCheckFunc {
111111
const testVpnGatewayRouteCreate = tcacctest.DefaultVpnDataSource + `
112112
resource "tencentcloud_vpn_customer_gateway" "cgw" {
113113
name = "terraform_test"
114-
public_ip_address = "1.3.3.3"
114+
public_ip_address = "1.14.14.14"
115115
116116
}
117117
@@ -172,7 +172,7 @@ resource "tencentcloud_vpn_gateway_route" "route1" {
172172
const testVpnGatewayRouteUpdate = tcacctest.DefaultVpnDataSource + `
173173
resource "tencentcloud_vpn_customer_gateway" "cgw" {
174174
name = "terraform_test"
175-
public_ip_address = "1.3.3.3"
175+
public_ip_address = "1.14.14.14"
176176
177177
}
178178

0 commit comments

Comments
 (0)