-
-
Notifications
You must be signed in to change notification settings - Fork 111
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
Changes root volume default-type to gp3 #72
Changes from 5 commits
b06a1d1
bc47ca3
8d3104e
d540967
c543eb9
42a0b3f
27fe435
60736f9
f822561
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -62,6 +62,12 @@ variable "root_block_device_volume_size" { | |
description = "The volume size (in GiB) to provision for the root block device. It cannot be smaller than the AMI it refers to." | ||
} | ||
|
||
variable "root_block_device_volume_type" { | ||
type = string | ||
default = "gp3" | ||
description = "The volume type." | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you please list the valid values here? Or if this module requires 0.13+ then please include a There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, done in PR #77. Closing this PR because it included incomplete edits from a different feature. |
||
} | ||
|
||
variable "disable_api_termination" { | ||
type = bool | ||
description = "Enable EC2 Instance Termination Protection" | ||
|
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.
I don't believe we'd accept this change as 1) I don't believe this would be a valid reference (i.e. it would fail) and 2) the develop can add the region (or region identifier) to their name via the context variables that make up
module.this.id
.Can you please remove this and the rename from
default
=>current
before we potentially move this PR forward?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.
Didn't mean for this to be included. This PR was based on our master & not the volume-type specific branch.
I've based a PR on that branch & "started over" here: #77