TF Workshop #3

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

View File

@ -159,7 +159,10 @@ resource "aws_instance" "my_ec2" {
ami = "ami-03e383d33727f4804"
instance_type = "t2.micro"
security_groups = [aws_security_group.allow_ssh.name]
security_groups = [
aws_security_group.allow_ssh.name,
aws_security_grou.default_egress.name
]
tags = {
Name = "TestEC2Instance"