From c24773acccf4155dba2678a3bffc3cf9d8ca0f86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rados=C5=82aw=20Piliszek?= <rpiliszek@7bulls.com> Date: Fri, 5 Aug 2022 15:42:17 +0200 Subject: [PATCH] Reset the flavour name IDE has issues with Unicode chars. --- terraform/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terraform/main.tf b/terraform/main.tf index 448b336..dfd42e1 100644 --- a/terraform/main.tf +++ b/terraform/main.tf @@ -25,7 +25,7 @@ data "openstack_networking_network_v2" "external" { resource "openstack_compute_instance_v2" "vm1" { name = "nginx-host" image_name = "Ubuntu-Focal-20.04-Daily-2022-04-19" - flavor_name = "łubuntu" + flavor_name = "small" key_pair = openstack_compute_keypair_v2.user1.name network { port = openstack_networking_port_v2.net1.id -- GitLab