-
Notifications
You must be signed in to change notification settings - Fork 9.6k
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
count on azure_data_disk #7321
Comments
Hi @isamuelson I am looking into this now - give me a little bit of time to investigate Thanks Paul |
@stack72 thanks! |
Fixes #7321 When testing to see how many data_disks could be added to a machine, I got the following response from the Azure RM API ``` { "error": { "code": "OperationNotAllowed", "target": "dataDisks", "message": "The maximum number of data disks allowed to be attached to a VM is 1." } } ``` We should ensure the schema copes with this so as to avoid waiting on the creation to throw the error
Hi @isamuelson So when looking at this, it isn't actually possible to specify more than 1 data_disk on a VM in Azure. The API returns this error:
I have submitted a PR that will only allow 1 data_disk to be specified going forward to keep with the API restraints Paul |
His is bizarre.... According to docs DS2 can have 4 data disks...we actually have that https://azure.microsoft.com/en-us/documentation/articles/virtual-machines-windows-sizes/ On Tuesday, June 28, 2016, Paul Stack notifications@github.com wrote:
Ido Samuelson Phone (US): +1-415-562-8582 Email: ido.samuelson@gmail.com Skype: ido_samuelson |
Checking a DS2 machine now to see... 2 mins |
@isamuelson apologies for the false alarm here - this was because of the machine type I was using :) |
ok, so there are different things happening here:
All within the same VM Hope this helps? Paul |
yes I know that....though this issue/request is to support storage_data_disk { |
@isamuelson this has been requested as a general addition to the schema in #7034 I am going to close this request and then let the tracking for the schema change happen there Paul |
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 have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. |
Hi,
would appreciate adding support for creating an array of data disks on azure.
https://www.terraform.io/docs/providers/azure/r/data_disk.html
The text was updated successfully, but these errors were encountered: