-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
az premium files max at 5T (vs 100T) #4552
Comments
current ARM indicates min to be 100 and max to be 102400 I've recompiled master, editing the above, but cannot figure out how to get terragrunt to 'trust' this updated provider build. |
Hi @surlypants, if you open a PR on the giovanni we can get it merged and into 1.36 🙂 |
the appropriate fix will need to case between std and premium storage, where std allowed values are 1-5120, and premium allowed values are 100-102400 left a note at giovanni (tombuildsstuff/giovanni#18) |
For the standard tier, the https://docs.microsoft.com/en-us/azure/storage/files/storage-files-how-to-create-large-file-share |
This comment has been minimized.
This comment has been minimized.
This has been released in version 2.31.0 of the provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. As an example: provider "azurerm" {
version = "~> 2.31.0"
}
# ... other configuration ... |
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. If you feel I made an error 🤖 🙉 , please reach out to my human friends 👉 [email protected]. Thanks! |
Given an azure premium files storage account, TF (0.12.9) constrains the quota/sizing between 100M and 5T, whereas the portal allows 100M - 100T.
attempting to supply (in TF) a quota > 50120 yields:
Invalid input:
input.QuotaInGB
must be greater than 0, and less than/equal to 5TB (5120 GB)100T portal creation validated by az cli:
az storage share list --account-name ${my_premium_files_SA} | grep quota
"quota": 102400
TF:
The text was updated successfully, but these errors were encountered: