
This should have literally everything you need to run a single command and get all infra components live and ready for app deployment.
9 lines
171 B
HCL
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"
|
|
}
|
|
}
|