Skip to content

Commit

Permalink
Merge pull request #2 from solutionDrive/add-terraform-module
Browse files Browse the repository at this point in the history
[hotfix] fixed name of resource to refelct ipv4
  • Loading branch information
twojtylak authored Apr 25, 2019
2 parents 218ca96 + d6e8072 commit d570c10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ resource "aws_security_group" "security_group" {
# see (https://blog.gruntwork.io/terraform-tips-tricks-loops-if-statements-and-gotchas-f739bbae55f9)
#

resource "aws_security_group_rule" "cidr_ingress_rule" {
resource "aws_security_group_rule" "cidr_ipv4_ingress_rule" {
provider = "aws.module"
type = "ingress"

Expand All @@ -43,7 +43,7 @@ resource "aws_security_group_rule" "cidr_ingress_rule" {
# Egress-Rules.
# see (https://blog.gruntwork.io/terraform-tips-tricks-loops-if-statements-and-gotchas-f739bbae55f9)
#
resource "aws_security_group_rule" "cidr_egress_rule" {
resource "aws_security_group_rule" "cidr_ipv4_egress_rule" {
provider = "aws.module"
type = "egress"

Expand Down

0 comments on commit d570c10

Please sign in to comment.