1
0
Fork 0
yatf/vpc.tf

10 lines
213 B
Terraform
Raw Normal View History

2024-10-21 00:24:33 +03:00
resource "yandex_vpc_network" "network1" {
name = "network1"
}
resource "yandex_vpc_subnet" "subnet1" {
name = "subnet1"
v4_cidr_blocks = [ "172.24.8.0/24" ]
network_id = yandex_vpc_network.network1.id
}