-
Notifications
You must be signed in to change notification settings - Fork 674
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
Unable to change file storage size from 10TB to 13TB #2158
Comments
Hello Team, This issue related to CS2108767. Please check the case and join the slack channel |
Hi @dzmitry-alchanau. We tried to reproduce the issue. When enabled the trace, it is found that there is a restriction cap on minimum and maximum capacity wrt IOPS.
So, Acc to the above msg, The maximum capacity is 12000GB when there is a limit of 2 IOPS per GB. |
Hi @VaishnaviGopal , but I was able to resize this volume using ibmcloud CLI tool, without changing IOPS, which means that this limitation exists on terraform provider side and not on IBM cloud API side, if I understand this correctly |
That is strange. Beacuse this is the response i got from CLI, which clearly states 12TB as maximum capacity.
Can you show the CLI logs where you have updated file size from 10TB to 13TB? |
~$ ibmcloud sl file volume-modify #volume-id --new-size 13000
You may run 'ibmcloud sl file volume-list --order #order-id' to find this file volume after it is ready. |
Hi @dzmitry-alchanau, We have made a dev release of provider with a fix to handle beta_access keyName. since our account doesn't have permisssion to test this scenario, we are requesting you to test. Follow the below steps to check if you are still getting the issue if using a capacity of 13TB.
|
Hi, thank you for quick help, but since we are using jenkins pipline for applying terraform changes and terrafrom itself running in docker container I would like to know when this feature will be released and will be available to download from hashicorp? |
Released in https://github.com/IBM-Cloud/terraform-provider-ibm/releases/tag/v1.20.0 |
closing the issue |
@VaishnaviGopal - Every account has different prevs and access restrictions. In our account we can provision upto 18 TB via the cloud cli but the terraform provider does not let us do that . Does your fix address that issue ? |
@surajibm yes that fix address that issue....Can you please test and let us know |
Hi there,
Thank you for opening an issue. Please note that we try to keep the Terraform issue tracker reserved for bug reports and feature requests. For general usage questions, please see: https://www.terraform.io/community.html.
Terraform Version
Terraform v0.13.5
Affected Resource(s)
Terraform Configuration Files
terraform {
required_version = ">= 0.13"
required_providers {
ibm = {
source = "IBM-Cloud/ibm"
version = "1.17.0"
}
}
}
resource "ibm_storage_file" "nfs01" {
type = "Endurance"
datacenter = "wdc06"
capacity = 13000 #capacity was changed from 10000 to 13000
iops = 2
allowed_virtual_guest_ids = [.....]
allowed_hardware_ids = [.....]
hourly_billing = false
notes = "[Managed by terraform]"
}
The text was updated successfully, but these errors were encountered: