1
0
Fork 0

users and nginx.conf, some vars too

This commit is contained in:
von 2024-04-27 00:04:31 +03:00
parent 844d29a51b
commit 64a777464c
3 changed files with 49 additions and 9 deletions

22
main.tf
View file

@ -16,7 +16,7 @@ resource "yandex_compute_instance" "vm" {
platform_id = "standard-v1"
boot_disk {
initialize_params {
image_id = "fd8gp9bblb0vpvqtch1k" # lemp
image_id = "fd84am5rkt7hj8es82a5" # lemp
size = 5
}
}
@ -31,24 +31,20 @@ resource "yandex_compute_instance" "vm" {
cores = 2
memory = 2
}
metadata = { user-data = "${file("users.yml")}" }
}
resource "yandex_vpc_network" "network-1" {
name = "network-1"
}
resource "yandex_vpc_subnet" "subnet-1" {
name = "subnet-1"
v4_cidr_blocks = [ "172.24.8.0/24"]
network_id = yandex_vpc_network.network-1.id
}
resource "yandex_lb_target_group" "demo-1" {
name = "demo-1"
target {
@ -62,8 +58,6 @@ resource "yandex_lb_target_group" "demo-1" {
}
}
resource "yandex_lb_network_load_balancer" "lb-1" {
name = "lb-1"
deletion_protection = "false"
@ -86,3 +80,13 @@ resource "yandex_lb_network_load_balancer" "lb-1" {
}
}
}
output "lb-ip" {
value = yandex_lb_network_load_balancer.lb-1.listener
}
output "vm-ips" {
value = tomap({
for name, vm in yandex_compute_instance.vm : name => vm.network_interface.0.nat_ip_address
})
}