TF Workshop #3

Open
anton wants to merge 5 commits from terraform-workshop into master
1 changed files with 5 additions and 0 deletions
Showing only changes of commit 624bfaf8f3 - Show all commits

View File

@ -135,6 +135,11 @@ resource "aws_security_group" "allow_ssh" {
protocol = "tcp" protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"] cidr_blocks = ["0.0.0.0/0"]
} }
}
resource "aws_security_group" "default_egress" {
name = "default_egress"
description = "Specify egress for instance"
egress { egress {
from_port = 0 from_port = 0