Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func TestAccTencentCloudVpnConnectionsDataSource(t *testing.T) {
const testAccTencentCloudVpnConnectionsDataSourceConfig_basic = `
resource "tencentcloud_vpn_customer_gateway" "cgw" {
name = "terraform_test"
public_ip_address = "3.2.3.3"
public_ip_address = "1.16.16.16"
}

# Create VPC and Subnet
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ func testAccCheckVpnCustomerGatewayExists(n string) resource.TestCheckFunc {
const testAccVpnCustomerGatewayConfig = `
resource "tencentcloud_vpn_customer_gateway" "my_cgw" {
name = "terraform_test"
public_ip_address = "1.1.1.2"
public_ip_address = "1.15.15.15"

tags = {
test = "tf"
Expand All @@ -210,7 +210,7 @@ resource "tencentcloud_vpn_customer_gateway" "my_cgw" {
const testAccVpnCustomerGatewayConfigUpdate = `
resource "tencentcloud_vpn_customer_gateway" "my_cgw" {
name = "terraform_update"
public_ip_address = "1.1.1.2"
public_ip_address = "1.15.15.15"

tags = {
test = "test"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ func testAccCheckVpnGatewayRouteExists(n string) resource.TestCheckFunc {
const testVpnGatewayRouteCreate = tcacctest.DefaultVpnDataSource + `
resource "tencentcloud_vpn_customer_gateway" "cgw" {
name = "terraform_test"
public_ip_address = "1.3.3.3"
public_ip_address = "1.14.14.14"

}

Expand Down Expand Up @@ -172,7 +172,7 @@ resource "tencentcloud_vpn_gateway_route" "route1" {
const testVpnGatewayRouteUpdate = tcacctest.DefaultVpnDataSource + `
resource "tencentcloud_vpn_customer_gateway" "cgw" {
name = "terraform_test"
public_ip_address = "1.3.3.3"
public_ip_address = "1.14.14.14"

}

Expand Down
Loading