Quote Bot CI/CD Pipeline / check (push) Waiting to run
Quote Bot CI/CD Pipeline / Security Scan (push) Waiting to run
Quote Bot CI/CD Pipeline / Build and push to Docker Hub (push) Blocked by required conditions
Quote Bot CI/CD Pipeline / Deploy to VPS via Ansible (push) Blocked by required conditions
11 lines
268 B
Terraform
11 lines
268 B
Terraform
resource "yandex_vpc_network" "network" {
|
|
name = "my-network"
|
|
}
|
|
|
|
resource "yandex_vpc_subnet" "subnet" {
|
|
name = "my-internal-subnet"
|
|
v4_cidr_blocks = ["10.0.0.0/24"]
|
|
zone = "ru-central1-d"
|
|
network_id = yandex_vpc_network.network.id
|
|
}
|