Skip to content

Commit

Permalink
YCDOCIO-3354 Corrected dataproc security group rules
Browse files Browse the repository at this point in the history
  • Loading branch information
mikhaildoc-documentat committed Feb 22, 2024
1 parent 07f2e27 commit 499a491
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tutorials/terraform/data-proc-nat-gateway.tf
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,13 @@ resource "yandex_vpc_security_group" "data-proc-security-group" {
to_port = 65535
predefined_target = "self_security_group"
}

ingress {
description = "Allow encrypted traffic from the internet"
protocol = "TCP"
port = 22
v4_cidr_blocks = ["0.0.0.0/0"]
}
}

# Create a service account
Expand Down

0 comments on commit 499a491

Please sign in to comment.