Skip to content

Commit

Permalink
Merge pull request #7113 from terraform-providers/p-emr-cluster-ingress
Browse files Browse the repository at this point in the history
P emr cluster ingress
  • Loading branch information
bflad authored Jan 10, 2019
2 parents 9f5a11f + 9e1c0c7 commit c308ad1
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion aws/data_source_aws_elasticache_cluster_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ resource "aws_security_group" "bar" {
from_port = -1
to_port = -1
protocol = "icmp"
cidr_blocks = ["0.0.0.0/0"]
self = true
}
}
Expand Down
2 changes: 1 addition & 1 deletion aws/data_source_aws_elb_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ resource "aws_security_group" "elb_test" {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
self = true
}
egress {
Expand Down
4 changes: 2 additions & 2 deletions aws/data_source_aws_instance_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@ resource "aws_security_group" "tf_test_foo" {
protocol = "icmp"
from_port = -1
to_port = -1
cidr_blocks = ["0.0.0.0/0"]
self = true
}
}
Expand Down Expand Up @@ -618,7 +618,7 @@ resource "aws_security_group" "tf_test_foo" {
protocol = "icmp"
from_port = -1
to_port = -1
cidr_blocks = ["0.0.0.0/0"]
self = true
}
}
Expand Down
2 changes: 1 addition & 1 deletion aws/data_source_aws_lambda_function_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ resource "aws_security_group" "lambda" {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
self = true
}
egress {
Expand Down
6 changes: 3 additions & 3 deletions aws/data_source_aws_lb_listener_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ resource "aws_security_group" "alb_test" {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
self = true
}
egress {
Expand Down Expand Up @@ -305,7 +305,7 @@ resource "aws_security_group" "alb_test" {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
self = true
}
egress {
Expand Down Expand Up @@ -424,7 +424,7 @@ resource "aws_security_group" "alb_test" {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
self = true
}
egress {
Expand Down
2 changes: 1 addition & 1 deletion aws/resource_aws_appautoscaling_scheduled_action_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ resource "aws_security_group" "hoge" {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
self = true
}
egress {
Expand Down
2 changes: 1 addition & 1 deletion aws/resource_aws_appautoscaling_target_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ resource "aws_security_group" "allow_all" {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
self = true
}
egress {
Expand Down
2 changes: 1 addition & 1 deletion aws/resource_aws_emr_instance_group_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ resource "aws_security_group" "allow_all" {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
self = true
}
egress {
Expand Down

0 comments on commit c308ad1

Please sign in to comment.