We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Because of problems with resource tencentcloud_cbs_storage (see issue #2), I tried instead using an array of data disks, and got the following error:
* tencentcloud_instance.default: tencentcloud_instance currently only one data disk is supported during instance creation
In the Tencent console however, I am able to create up to eight data disks during instance creation.
Example:
resource "tencentcloud_instance" "default" { . . . data_disks = [ { data_disk_type = "CLOUD_BASIC"" data_disk_size = "60" }, { data_disk_type = "CLOUD_BASIC"" data_disk_size = "60" } ] . . . }
The text was updated successfully, but these errors were encountered:
the data disk count limit has been upgrade from 1 to 10 and will be available in next release
Sorry, something went wrong.
fixed by hashicorp@8dfde34
No branches or pull requests
Because of problems with resource tencentcloud_cbs_storage (see issue #2), I tried instead using an array of data disks, and got the following error:
* tencentcloud_instance.default: tencentcloud_instance currently only one data disk is supported during instance creation
In the Tencent console however, I am able to create up to eight data disks during instance creation.
Example:
The text was updated successfully, but these errors were encountered: