From b1d3eca0bb0bf7498c1eeff84f7f67c7a5ec709d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rados=C5=82aw=20Piliszek?= <rpiliszek@7bulls.com> Date: Sat, 23 Jul 2022 12:53:04 +0200 Subject: [PATCH] Adapt to the env --- terraform/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/terraform/main.tf b/terraform/main.tf index 75b5e23..0156f1e 100644 --- a/terraform/main.tf +++ b/terraform/main.tf @@ -29,8 +29,8 @@ data "openstack_networking_secgroup_v2" "default" { # Create virtual machine resource "openstack_compute_instance_v2" "nginx" { name = "nginx-host" - image_name = "ubuntu-18.04" - flavor_name = "m1.tiny" + image_name = "Ubuntu-Focal-20.04-Daily-2022-04-19" + flavor_name = "łubuntu" key_pair = openstack_compute_keypair_v2.user_key.name network { port = openstack_networking_port_v2.nginx.id -- GitLab