clippable/aws/infra/ebs.tf
shockrah 9775ae9cb7 + Simple example infrastructure built with Terraform
This should have literally everything you need to
run a single command and get all infra components
live and ready for app deployment.
2021-10-19 19:57:50 -07:00

9 lines
171 B
HCL

resource "aws_ebs_volume" "app_volume" {
availability_zone = var.availability_zone
size = 20
type = "standard"
tags = {
Name = "APP Video block storage"
}
}