Skip to content

Commit fc7a0af

Browse files
merge upstream
2 parents 4401851 + 3ce447a commit fc7a0af

File tree

218 files changed

+474
-331
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

218 files changed

+474
-331
lines changed

CHANGELOG.md

Lines changed: 55 additions & 45 deletions

examples/tencentcloud-vpc/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ resource "tencentcloud_vpc_acl" "default" {
2222
}
2323

2424
resource "tencentcloud_vpc_acl_attachment" "example" {
25-
acl_id = tencentcloud_vpc_acl.default.id
26-
subnet_ids = data.tencentcloud_vpc_instances.default.instance_list[0].subnet_ids
25+
acl_id = tencentcloud_vpc_acl.default.id
26+
subnet_id = data.tencentcloud_vpc_instances.default.instance_list[0].subnet_ids[0]
2727
}
2828

2929
data "tencentcloud_vpc_acls" "default" {
3030
name = "test_acl"
31-
}
31+
}

gendoc/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import (
1616
"github.com/fatih/color"
1717
"github.com/hashicorp/hcl/v2/hclwrite"
1818
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
19-
cloud "github.com/terraform-providers/terraform-provider-tencentcloud/tencentcloud"
19+
cloud "github.com/tencentcloudstack/terraform-provider-tencentcloud/tencentcloud"
2020
)
2121

2222
const (

go.mod

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/terraform-providers/terraform-provider-tencentcloud
1+
module github.com/tencentcloudstack/terraform-provider-tencentcloud
22

33
go 1.13
44

@@ -16,6 +16,7 @@ require (
1616
github.com/mitchellh/go-homedir v1.1.0
1717
github.com/pkg/errors v0.9.1
1818
github.com/tencentcloud/tencentcloud-sdk-go v3.0.229+incompatible
19+
github.com/terraform-providers/terraform-provider-tencentcloud v1.38.3 // indirect
1920
github.com/yangwenmai/ratelimit v0.0.0-20180104140304-44221c2292e1
2021
github.com/zclconf/go-cty v1.4.2 // indirect
2122
golang.org/x/sys v0.0.0-20200523222454-059865788121 // indirect

go.sum

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -458,8 +458,11 @@ github.com/subosito/gotenv v1.2.0 h1:Slr1R9HxAlEKefgq5jn9U+DnETlIUa6HfgEzj0g5d7s
458458
github.com/subosito/gotenv v1.2.0/go.mod h1:N0PQaV/YGNqwC0u51sEeR/aUtSLEXKX9iv69rRypqCw=
459459
github.com/tdakkota/asciicheck v0.0.0-20200416190851-d7f85be797a2 h1:Xr9gkxfOP0KQWXKNqmwe8vEeSUiUj4Rlee9CMVX2ZUQ=
460460
github.com/tdakkota/asciicheck v0.0.0-20200416190851-d7f85be797a2/go.mod h1:yHp0ai0Z9gUljN3o0xMhYJnH/IcvkdTBOX2fmJ93JEM=
461+
github.com/tencentcloud/tencentcloud-sdk-go v3.0.196+incompatible/go.mod h1:0PfYow01SHPMhKY31xa+EFz2RStxIqj6JFAJS+IkCi4=
461462
github.com/tencentcloud/tencentcloud-sdk-go v3.0.229+incompatible h1:ZlFfQuJYC+g2bEjlZUvIUQUifHhzWM69GTzFh0qzLl4=
462463
github.com/tencentcloud/tencentcloud-sdk-go v3.0.229+incompatible/go.mod h1:0PfYow01SHPMhKY31xa+EFz2RStxIqj6JFAJS+IkCi4=
464+
github.com/terraform-providers/terraform-provider-tencentcloud v1.38.3 h1:1RfGV7CiPmeyrG41LdvuJ3CmPao2QxHnEQnXKqVAxSk=
465+
github.com/terraform-providers/terraform-provider-tencentcloud v1.38.3/go.mod h1:5jcaioF+8fIC9h4RBZV0e32uanncMZr5c2/8p/CWCU8=
463466
github.com/tetafro/godot v0.3.7 h1:+mecr7RKrUKB5UQ1gwqEMn13sDKTyDR8KNIquB9mm+8=
464467
github.com/tetafro/godot v0.3.7/go.mod h1:/7NLHhv08H1+8DNj0MElpAACw1ajsCuf3TKNQxA5S+0=
465468
github.com/timakin/bodyclose v0.0.0-20190930140734-f7f2e9bca95e h1:RumXZ56IrCj4CL+g1b9OL/oH0QnsF976bC8xQFYUD5Q=

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"github.com/hashicorp/terraform-plugin-sdk/plugin"
55
"github.com/hashicorp/terraform-plugin-sdk/terraform"
6-
"github.com/terraform-providers/terraform-provider-tencentcloud/tencentcloud"
6+
"github.com/tencentcloudstack/terraform-provider-tencentcloud/tencentcloud"
77
)
88

99
func main() {

tencentcloud/data_source_tc_as_scaling_configs.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717
"log"
1818

1919
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
20-
"github.com/terraform-providers/terraform-provider-tencentcloud/tencentcloud/internal/helper"
20+
"github.com/tencentcloudstack/terraform-provider-tencentcloud/tencentcloud/internal/helper"
2121
)
2222

2323
func dataSourceTencentCloudAsScalingConfigs() *schema.Resource {

tencentcloud/data_source_tc_as_scaling_groups.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
"log"
1919

2020
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
21-
"github.com/terraform-providers/terraform-provider-tencentcloud/tencentcloud/internal/helper"
21+
"github.com/tencentcloudstack/terraform-provider-tencentcloud/tencentcloud/internal/helper"
2222
)
2323

2424
func dataSourceTencentCloudAsScalingGroups() *schema.Resource {

tencentcloud/data_source_tc_as_scaling_policies.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717
"log"
1818

1919
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
20-
"github.com/terraform-providers/terraform-provider-tencentcloud/tencentcloud/internal/helper"
20+
"github.com/tencentcloudstack/terraform-provider-tencentcloud/tencentcloud/internal/helper"
2121
)
2222

2323
func dataSourceTencentCloudAsScalingPolicies() *schema.Resource {

tencentcloud/data_source_tc_availability_regions.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
"github.com/hashicorp/terraform-plugin-sdk/helper/resource"
1919
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
2020
cvm "github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/cvm/v20170312"
21-
"github.com/terraform-providers/terraform-provider-tencentcloud/tencentcloud/internal/helper"
21+
"github.com/tencentcloudstack/terraform-provider-tencentcloud/tencentcloud/internal/helper"
2222
)
2323

2424
func dataSourceTencentCloudAvailabilityRegions() *schema.Resource {

0 commit comments

Comments
 (0)