-
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
provider/aws: Add "no_device" support to ephemeral block devices #10547
provider/aws: Add "no_device" support to ephemeral block devices #10547
Conversation
ce5f446
to
3b84fe5
Compare
@timonwong hi there! Thank you! Would there be a way to guard against someone not specifying either |
31844c9
to
f8b2eea
Compare
Fixes hashicorp#8455, hashicorp#5390 This add a new `no_device` attribute to `ephemeral_block_device` block, which allows users omit ephemeral devices from AMI's predefined block device mappings, which is useful for EBS-only instance types.
f8b2eea
to
5748821
Compare
@kwilczynski I just added a check which requires |
@timonwong hi there! Looks good! Anything else to add or left to do? |
@kwilczynski I think it's Ok to remove WIP tag now :) |
Hi @timonwong (and @kwilczynski!) Thanks to you both for the work here - this LGTM! :) Paul |
Doesn't it need to also support The definition is not the same as for which i believe should be the same. |
Hi @tinder-jlee! This issue is from a long time ago, prior to the AWS provider development moving to its own repository. In order for it to be seen by that provider's maintainer team, please feel free to open an issue for this over in that repository. |
@apparentlymart gotcha. i'll create an issue there. thanks! |
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. |
Fixes #8455, #5390
This add a new
no_device
attribute toephemeral_block_device
block,which allows users omit ephemeral devices from AMI's predefined block
device mappings, which is useful for EBS-only instance types.