mirror of
https://github.com/MichaelCade/90DaysOfDevOps.git
synced 2025-07-12 08:51:24 +07:00
9 lines
217 B
Terraform
9 lines
217 B
Terraform
![]() |
# Allow the instance to receive requests on port 8080.
|
||
|
resource "aws_security_group" "instance" {
|
||
|
ingress {
|
||
|
from_port = 8080
|
||
|
to_port = 8080
|
||
|
protocol = "tcp"
|
||
|
cidr_blocks = ["0.0.0.0/0"]
|
||
|
}
|
||
|
}
|