Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

В этом руководстве вы создадите тестовую ВМ и NAT-инстанс с помощью сервиса [Yandex Compute Cloud](https://yandex.cloud/ru/docs/compute/) и настроите маршрутизацию с помощью [Yandex Virtual Private Cloud](https://yandex.cloud/ru/docs/vpc/).

Подготовка инфраструктуры для маршрутизации через NAT-инстанс с помощью Terraform описана в [практическом руководстве](https://yandex.cloud/ru/docs/tutorials/routing/nat-instance), необходимые для настройки конфигурационные файлы `nat-instance.tf` и `nat-instance.auto.tfvars` расположены в этом репозитории.
Подготовка инфраструктуры для маршрутизации через NAT-инстанс с помощью Terraform описана в [практическом руководстве](https://yandex.cloud/ru/docs/tutorials/routing/nat-instance/), необходимые для настройки конфигурационные файлы `nat-instance.tf` и `nat-instance.auto.tfvars` расположены в этом репозитории.
2 changes: 2 additions & 0 deletions nat-instance.tf
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@ resource "yandex_vpc_security_group" "nat-instance-sg" {
protocol = "ANY"
description = "any"
v4_cidr_blocks = ["0.0.0.0/0"]
from_port = 0
to_port = 65535
}

ingress {
Expand Down