Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Resource tencentcloud_subnet is having internal error. #2050

Open
styumyum opened this issue Aug 15, 2023 · 0 comments
Open

Resource tencentcloud_subnet is having internal error. #2050

styumyum opened this issue Aug 15, 2023 · 0 comments

Comments

@styumyum
Copy link

Community Note

  • Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
  • Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment

Terraform Version

Terraform v1.3.7

Affected Resource(s)

  • tencentcloud_subnet

Terraform Configuration Files

terraform {
  required_version = ">= 1.0, < 2.0"
  required_providers {
    tencentcloud = {
      source  = "tencentcloudstack/tencentcloud"
      version = "~> 1.0"
    }
  }
}

##################################################

provider "tencentcloud" {
  region = "ap-hongkong"
}

resource "tencentcloud_vpc" "vpc" {
  name       = "vpc-example"
  cidr_block = "10.0.0.0/16"
}

resource "tencentcloud_subnet" "subnet" {
  vpc_id            = tencentcloud_vpc.vpc.id
  name              = "subnet-example"
  cidr_block        = "10.0.1.0/24"
  availability_zone = "ap-hongkong-2"
  is_multicast      = false
}

Expected Behavior

Subnet to be created on TencentCloud and Terraform complete without error.

Actual Behavior

Subnet had successfully created on TencentCloud but Terraform failed with the following error message.

│ Error: [TencentCloudSDKError] Code=InternalError, Message=Internal error. Please retry your request. If the problem persists, please contact Tencent Cloud Customer Service., RequestId=59e285a7-d127-4e90-9347-23a30d739106
│ 
│   with tencentcloud_subnet.subnet,
│   on main.tf line 22, in resource "tencentcloud_subnet" "subnet":
│   22: resource "tencentcloud_subnet" "subnet" {

Steps to Reproduce

  1. terraform apply
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant