-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
module: Add EBS extra volume support #45
Conversation
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.
Allow extra EBS volumes to be created for each AWS instance.
@@ -121,6 +121,7 @@ module "dcos-infrastructure" { | |||
private_agents_os = "${var.private_agents_os}" | |||
private_agents_root_volume_size = "${var.private_agents_root_volume_size}" | |||
private_agents_root_volume_type = "${var.private_agents_root_volume_type}" | |||
private_agents_extra_volumes = ["${var.private_agents_extra_volumes}"] |
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.
with this we need to have a minimum ref to the next version of instance
min version of infra needs to be raised as mentioned in dcos-terraform-terraform-aws-infrastructure#20 next patch num is safe to use |
This is because new variables are introduced.
@fatz PTAL again. I bump the dependency version |
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.
ci failed cause of a missing description update which is available in master. Approving and merging.
have a question: How to use this? |
@Rohithzr you can take a look into the instance module https://github.com/dcos-terraform/terraform-aws-instance#example |
@fatz thanks, I have one question though, does this method also mounts those volumes to the instance? |
Allow extra EBS volumes to be created for each AWS instance.