rut-test-ops/pgcluster.tf

24 lines
750 B
Terraform
Raw Permalink Normal View History

2024-10-09 11:48:23 +00:00
resource "openstack_compute_instance_v2" "pg-nodes" {
2024-09-27 09:21:29 +00:00
count = var.pgcluster_instance_count
name = "${var.pgcluster_name}-${count.index}.${var.dns_suffix}"
flavor_name = "${var.pgcluster_instance_type}"
key_pair = "mifr-yubi"
security_groups = ["https", "microk8s", "Allow SSH from SUNET jumphosts", "Allow ssh from the world"]
block_device {
uuid = "5d24aca9-11be-4de1-9770-4a097d68f361"
source_type = "image"
volume_size = 20
boot_index = 0
destination_type = "volume"
delete_on_termination = true
}
scheduler_hints {
group = openstack_compute_servergroup_v2.controllers.id
}
network {
name = "public"
}
}