From d30b66b186e6db75ff033013f4794f3f09d667b6 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ing=2E=20Kl=C3=A1ra=20Moravcov=C3=A1?=
 <klara.moravcova@cesnet.cz>
Date: Thu, 13 Mar 2025 14:16:00 +0100
Subject: [PATCH] Change bastion flavor to G2 flavor.

---
 README.md    | 4 ++--
 variables.tf | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md
index aa280dd..ead5c89 100644
--- a/README.md
+++ b/README.md
@@ -65,7 +65,7 @@ No modules.
 
 | Name | Description | Type | Default | Required |
 |------|-------------|------|---------|:--------:|
-| <a name="input_bastion_flavor"></a> [bastion\_flavor](#input\_bastion\_flavor) | n/a | `string` | `"standard.small"` | no |
+| <a name="input_bastion_flavor"></a> [bastion\_flavor](#input\_bastion\_flavor) | n/a | `string` | `"e1.small"` | no |
 | <a name="input_bastion_image"></a> [bastion\_image](#input\_bastion\_image) | Bastion OS: Image name | `string` | `"ubuntu-noble-x86_64"` | no |
 | <a name="input_bastion_name"></a> [bastion\_name](#input\_bastion\_name) | Name of the bastion VM. Must match [a-zA-Z0-9-]+ regexp. | `string` | `"bastion-server"` | no |
 | <a name="input_bastion_ssh_user_name"></a> [bastion\_ssh\_user\_name](#input\_bastion\_ssh\_user\_name) | n/a | `string` | `"ubuntu"` | no |
@@ -87,7 +87,7 @@ No modules.
 | <a name="input_lb_kube_api_listener_port"></a> [lb\_kube\_api\_listener\_port](#input\_lb\_kube\_api\_listener\_port) | Listener port for kube-aip load balancer | `number` | `6443` | no |
 | <a name="input_lb_kube_api_member_port"></a> [lb\_kube\_api\_member\_port](#input\_lb\_kube\_api\_member\_port) | Port number where kube-api listens. | `number` | `6443` | no |
 | <a name="input_nodes_image"></a> [nodes\_image](#input\_nodes\_image) | Image used for both control and worker servers | `string` | `"ubuntu-noble-x86_64"` | no |
-| <a name="input_public_external_network"></a> [public\_external\_network](#input\_public\_external\_network) | Cloud public external network pool | `string` | `"public-cesnet-195-113-167-GROUP"` | no |
+| <a name="input_public_external_network"></a> [public\_external\_network](#input\_public\_external\_network) | Cloud public external network pool | `string` | `"external-ipv4-general-public"` | no |
 | <a name="input_remove_rules"></a> [remove\_rules](#input\_remove\_rules) | List of default rule keys to be removed | `list(string)` | `[]` | no |
 | <a name="input_router_creation_enable"></a> [router\_creation\_enable](#input\_router\_creation\_enable) | Create dedicated router instance. true/false ~ create new / reuse existing personal router | `bool` | `true` | no |
 | <a name="input_ssh_public_key"></a> [ssh\_public\_key](#input\_ssh\_public\_key) | n/a | `string` | `"~/.ssh/id_rsa.pub"` | no |
diff --git a/variables.tf b/variables.tf
index 02dc245..92c0867 100644
--- a/variables.tf
+++ b/variables.tf
@@ -51,7 +51,7 @@ variable "bastion_name" {
 }
 
 variable "bastion_flavor" {
-  default = "standard.small"
+  default = "e1.small"
 }
 
 variable "bastion_image" {
-- 
GitLab