Skip to content

Commit

Permalink
Update main.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
irakravchuk authored Mar 25, 2021
1 parent 20f2542 commit 4994b9d
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion montf/main.tf
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@

provider "aws" {
#region = var.region
# region = ""
region = "us-east-1"
#access_key = "${var.scalr_aws_access_key}"
#secret_key = "${var.scalr_aws_secret_key}"
}

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"
region = "us-east-1"


ingress_cidr_blocks = ["10.10.0.0/16"]
}

0 comments on commit 4994b9d

Please sign in to comment.