Skip to content

Instantly share code, notes, and snippets.

@miry
Created March 18, 2018 18:51
Show Gist options
  • Save miry/aa6b80fd71223667e6698e58a11ff7be to your computer and use it in GitHub Desktop.
Save miry/aa6b80fd71223667e6698e58a11ff7be to your computer and use it in GitHub Desktop.
REsize Amazon EBS volumes without a reboot: Step 1 Update the resource with new size
// volumes.tf
resource "aws_ebs_volume" "mysql" {
availability_zone = "us-east-1a"
size = 2000
type = "gp2"
tags {
Name = "mysql"
Role = "db"
Terraform = "true"
FS = "xfs"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment