Skip to content

Instantly share code, notes, and snippets.

@valery-zhurbenko
Created May 1, 2020 09:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save valery-zhurbenko/dee89913e18a7ed1cbf47d3dd0ab9199 to your computer and use it in GitHub Desktop.
Save valery-zhurbenko/dee89913e18a7ed1cbf47d3dd0ab9199 to your computer and use it in GitHub Desktop.
variable volume_size {
default = "20"
}
resource "aws_instance" "web" {
ami = "AL2_x86_64"
instance_type = "t2.micro"
root_block_device {
volume_size = var.volume_size
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment