-
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
Fix for GH-13660 #13686
Fix for GH-13660 #13686
Conversation
So your fix only focuses on the data disk? I am working through a different issue on the os_disk. Wondering should I combine with yours or keep to mine. Thinking I should probably keep with mine. |
@brandontosch I handled the issue independent of this one. I ran into the same problem on a fix to attach os_disk. I read through your code for the fix. Thanks. I believe we are good. |
@pearcec Does that mean there's a fix applied somewhere? I need to update a machine that has os disk set to Attach with a VHD. I don't mind checking out a branch, I already build from source locally. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a really minor fix that would have saved us quite a few hours of debugging and research. I didn't checkt the code of the tests, but the changes to the azure vm code are obviously correct. Please, please someone merge.
Fix for this is to |
@nbering I fixed it for os_disk. It was merged back in June. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is still an issue for us which prevents us from switching to a current version of terraform.
Hello @brandontosch, and thanks for working on this! As part of the the Terraform 0.10 release earlier this year, all of the Terraform providers were moved to their own repositories in the terraform-providers GitHub organization, and removed from the Terraform Core repository. Unfortunately due to the fact that new issues and pull requests are being opened constantly, it was not possible for the various provider maintainers to merge all outstanding pull requests before this split, and there is no automatic way to migrate a pull request to a new repository. As a result, this pull request can sadly no longer be applied as-is, and so I'm going to close it. If you or someone else has the time and motivation to apply same changes to the Thanks again for working on this, and sorry it was not able to be merged before the provider repository changes. |
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. |
For issue #13660. Fixed logic to allow attaching disks to VMs using
vhd_uri
as the source. Also added a new test for attaching storage blobs to VMs since that was missing.