1
0
Fork 0
yatf/vpc.tf
2024-10-21 00:24:33 +03:00

9 lines
213 B
HCL

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
}