diff --git a/tencentcloud/services/clb/resource_tc_clb_instance.md b/tencentcloud/services/clb/resource_tc_clb_instance.md index d0bc227535..fcf7b4edb1 100644 --- a/tencentcloud/services/clb/resource_tc_clb_instance.md +++ b/tencentcloud/services/clb/resource_tc_clb_instance.md @@ -37,6 +37,22 @@ resource "tencentcloud_clb_instance" "internal_clb" { OPEN CLB +```hcl +resource "tencentcloud_clb_instance" "open_clb" { + network_type = "OPEN" + clb_name = "myclb" + project_id = 0 + vpc_id = "vpc-da7ffa61" + security_groups = ["sg-o0ek7r93"] + + tags = { + test = "tf" + } +} +``` + +SUPPORT CORS + ```hcl resource "tencentcloud_clb_instance" "open_clb" { network_type = "OPEN" diff --git a/website/docs/r/clb_instance.html.markdown b/website/docs/r/clb_instance.html.markdown index ae62a8d54b..743a171d8f 100644 --- a/website/docs/r/clb_instance.html.markdown +++ b/website/docs/r/clb_instance.html.markdown @@ -48,6 +48,22 @@ resource "tencentcloud_clb_instance" "internal_clb" { ### OPEN CLB +```hcl +resource "tencentcloud_clb_instance" "open_clb" { + network_type = "OPEN" + clb_name = "myclb" + project_id = 0 + vpc_id = "vpc-da7ffa61" + security_groups = ["sg-o0ek7r93"] + + tags = { + test = "tf" + } +} +``` + +### SUPPORT CORS + ```hcl resource "tencentcloud_clb_instance" "open_clb" { network_type = "OPEN"