-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cbb2cbf
commit 95fd994
Showing
200 changed files
with
1,544 additions
and
1,544 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
package common | ||
|
||
import ( | ||
"github.com/volcengine/volcengine-go-sdk/service/autoscaling" | ||
"github.com/volcengine/volcengine-go-sdk/service/clb" | ||
"github.com/volcengine/volcengine-go-sdk/service/ecs" | ||
"github.com/volcengine/volcengine-go-sdk/service/natgateway" | ||
"github.com/volcengine/volcengine-go-sdk/service/rdsmysql" | ||
"github.com/volcengine/volcengine-go-sdk/service/rdsmysqlv2" | ||
"github.com/volcengine/volcengine-go-sdk/service/storageebs" | ||
"github.com/volcengine/volcengine-go-sdk/service/vpc" | ||
"github.com/volcengine/volcengine-go-sdk/service/vpn" | ||
) | ||
|
||
type SdkClient struct { | ||
Region string | ||
VpcClient *vpc.VPC | ||
ClbClient *clb.CLB | ||
EcsClient *ecs.ECS | ||
EbsClient *storageebs.STORAGEEBS | ||
NatClient *natgateway.NATGATEWAY | ||
VpnClient *vpn.VPN | ||
AutoScalingClient *autoscaling.AUTOSCALING | ||
RdsClient *rdsmysql.RDSMYSQL | ||
RdsClientV2 *rdsmysqlv2.RDSMYSQLV2 | ||
UniversalClient *Universal | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
common/common_vestack_version.go → common/common_volcengine_version.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
package common | ||
|
||
const ( | ||
TerraformProviderName = "terraform-provider-vestack" | ||
TerraformProviderName = "terraform-provider-volcengine" | ||
TerraformProviderVersion = "0.0.5" | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
resource "vestack_acl" "foo" { | ||
resource "volcengine_acl" "foo" { | ||
acl_name = "tf-test-3" | ||
description = "tf-test" | ||
} | ||
|
||
resource "vestack_acl_entry" "foo" { | ||
acl_id = vestack_acl.foo.id | ||
resource "volcengine_acl_entry" "foo" { | ||
acl_id = volcengine_acl.foo.id | ||
description = "tf acl entry desc demo" | ||
entry = "192.2.2.1/32" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
data "vestack_acls" "default"{ | ||
data "volcengine_acls" "default"{ | ||
ids = ["acl-3ti8n0rurx4bwbh9jzdy"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
data "vestack_certificates" "default" { | ||
data "volcengine_certificates" "default" { | ||
ids = ["cert-274scdwqufwg07fap8u5fu8pi"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
data "vestack_clbs" "default"{ | ||
data "volcengine_clbs" "default"{ | ||
ids = ["clb-273y2ok6ets007fap8txvf6us"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
data "vestack_ecs_instances" "foo" { | ||
data "volcengine_ecs_instances" "foo" { | ||
ids = ["i-ebgy6xmgjve0384ncgsc"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
data "vestack_eip_addresses" "default"{ | ||
data "volcengine_eip_addresses" "default"{ | ||
ids = ["eip-2748mbpjqzhfk7fap8teu0k1a"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
data "vestack_images" "default" { | ||
data "volcengine_images" "default" { | ||
ids = ["image-cm9ssb4eqmhdas306zlp", "image-ybkzct2rtj4ay5rmlfc3"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
data "vestack_listeners" "default" { | ||
data "volcengine_listeners" "default" { | ||
ids = ["lsn-273yv0mhs5xj47fap8sehiiso", "lsn-273yw6zps6pz47fap8swa0q2z"] | ||
} |
Oops, something went wrong.