From 2cd9615f1d8f2dd2c5884e40dc40bd620351cc85 Mon Sep 17 00:00:00 2001 From: Alex Kleiber Date: Fri, 19 Jul 2024 14:15:46 +0200 Subject: [PATCH] fix(jumphost): image id --- modules/jumphost/README.md | 2 +- modules/jumphost/variables.tf | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/jumphost/README.md b/modules/jumphost/README.md index 24bfdac..fe19856 100644 --- a/modules/jumphost/README.md +++ b/modules/jumphost/README.md @@ -103,7 +103,7 @@ No modules. | [cloud\_init](#input\_cloud\_init) | Custom Cloud-init configuration. Cloud-init cloud config format is expected. Only *.yml and *.yaml files will be read. | `string` | `""` | no | | [node\_bandwidth\_size](#input\_node\_bandwidth\_size) | Jumphost node external IP bandwidth size in Mbps. (default: 10) | `number` | `10` | no | | [node\_flavor](#input\_node\_flavor) | Jumphost node specifications in otc flavor format. (default: s3.medium.2 (3rd generation 1 Core 2GB RAM)) | `string` | `"s3.medium.2"` | no | -| [node\_image\_id](#input\_node\_image\_id) | Jumphost node image name. Image must exist within the same project as the jumphost node. (default: 9f92079d-9d1b-4832-90c1-a3b4a1c00b9b (Standard\_Ubuntu\_22.04\_latest)) | `string` | `"9f92079d-9d1b-4832-90c1-a3b4a1c00b9b"` | no | +| [node\_image\_id](#input\_node\_image\_id) | Jumphost node image name. Image must exist within the same project as the jumphost node. (default: bd571d76-c73c-405c-8532-8f7c3b38e5a5 (Standard\_Ubuntu\_22.04\_latest)) | `string` | `"bd571d76-c73c-405c-8532-8f7c3b38e5a5"` | no | | [node\_power\_state](#input\_node\_power\_state) | Jumphost node power state. Only active (powered on) and shutoff (shutdown) are supported. (default: active) | `string` | `"active"` | no | | [node\_storage\_encryption\_enabled](#input\_node\_storage\_encryption\_enabled) | Jumphost node system disk storage KMS encryption toggle. | `bool` | `false` | no | | [node\_storage\_encryption\_key\_name](#input\_node\_storage\_encryption\_key\_name) | If jumphost system disk KMS encryption is enabled, use this KMS key name instead of creating a new one. | `string` | `null` | no | diff --git a/modules/jumphost/variables.tf b/modules/jumphost/variables.tf index 35c569b..20d2515 100644 --- a/modules/jumphost/variables.tf +++ b/modules/jumphost/variables.tf @@ -21,8 +21,8 @@ variable "node_flavor" { } variable "node_image_id" { - description = "Jumphost node image name. Image must exist within the same project as the jumphost node. (default: 9f92079d-9d1b-4832-90c1-a3b4a1c00b9b (Standard_Ubuntu_22.04_latest))" - default = "9f92079d-9d1b-4832-90c1-a3b4a1c00b9b" + description = "Jumphost node image name. Image must exist within the same project as the jumphost node. (default: bd571d76-c73c-405c-8532-8f7c3b38e5a5 (Standard_Ubuntu_22.04_latest))" + default = "bd571d76-c73c-405c-8532-8f7c3b38e5a5" } variable "node_power_state" {