Skip to content

Commit

Permalink
Create main.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
irakravchuk authored Mar 25, 2021
1 parent 62582d2 commit 5c02f78
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions montf/main.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
module "web_server_sg" {
source = "terraform-aws-modules/security-group/aws//modules/http-80"

name = "web-server"
description = "Security group for web-server with HTTP ports open within VPC"
vpc_id = "vpc-12345678"

ingress_cidr_blocks = ["10.10.0.0/16"]
}

0 comments on commit 5c02f78

Please sign in to comment.