Skip to content

Commit ef57fd6

Browse files
fix(deps): update the default VSI image name to ibm-ubuntu-22-04-3-minimal-amd64-2 (#654)
1 parent 7b7af92 commit ef57fd6

File tree

9 files changed

+16
-16
lines changed

9 files changed

+16
-16
lines changed

examples/one-vpc-one-vsi/override.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@
160160
{
161161
"access_tags": [],
162162
"boot_volume_encryption_key_name": "slz-vsi-volume-key",
163-
"image_name": "ibm-ubuntu-22-04-3-minimal-amd64-1",
163+
"image_name": "ibm-ubuntu-22-04-3-minimal-amd64-2",
164164
"machine_type": "cx2-2x4",
165165
"name": "jump-box",
166166
"resource_group": "slz-management-rg",

examples/override-example/override.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@
360360
{
361361
"access_tags": [],
362362
"boot_volume_encryption_key_name": "slz-vsi-volume-key",
363-
"image_name": "ibm-ubuntu-22-04-3-minimal-amd64-1",
363+
"image_name": "ibm-ubuntu-22-04-3-minimal-amd64-2",
364364
"machine_type": "cx2-2x4",
365365
"name": "jump-box",
366366
"resource_group": "slz-management-rg",
@@ -393,7 +393,7 @@
393393
{
394394
"access_tags": [],
395395
"boot_volume_encryption_key_name": "slz-vsi-volume-key",
396-
"image_name": "ibm-ubuntu-22-04-3-minimal-amd64-1",
396+
"image_name": "ibm-ubuntu-22-04-3-minimal-amd64-2",
397397
"machine_type": "cx2-2x4",
398398
"name": "private-svs",
399399
"resource_group": "slz-workload-rg",
@@ -426,7 +426,7 @@
426426
{
427427
"access_tags": [],
428428
"boot_volume_encryption_key_name": "slz-vsi-volume-key",
429-
"image_name": "ibm-ubuntu-22-04-3-minimal-amd64-1",
429+
"image_name": "ibm-ubuntu-22-04-3-minimal-amd64-2",
430430
"machine_type": "cx2-2x4",
431431
"name": "inet-svs",
432432
"resource_group": "slz-edge-rg",

patterns/mixed/override.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@
359359
"vsi": [
360360
{
361361
"boot_volume_encryption_key_name": "slz-vsi-volume-key",
362-
"image_name": "ibm-ubuntu-22-04-3-minimal-amd64-1",
362+
"image_name": "ibm-ubuntu-22-04-3-minimal-amd64-2",
363363
"machine_type": "cx2-4x8",
364364
"name": "management-server",
365365
"security_group": {

patterns/mixed/variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ variable "use_random_cos_suffix" {
132132
variable "vsi_image_name" {
133133
description = "VSI image name. Use the IBM Cloud CLI command `ibmcloud is images` to see availabled images."
134134
type = string
135-
default = "ibm-ubuntu-22-04-3-minimal-amd64-1"
135+
default = "ibm-ubuntu-22-04-3-minimal-amd64-2"
136136
}
137137

138138
variable "vsi_instance_profile" {
@@ -477,7 +477,7 @@ variable "teleport_instance_profile" {
477477
variable "teleport_vsi_image_name" {
478478
description = "Teleport VSI image name. Use the IBM Cloud CLI command `ibmcloud is images` to see availabled images."
479479
type = string
480-
default = "ibm-ubuntu-22-04-3-minimal-amd64-1"
480+
default = "ibm-ubuntu-22-04-3-minimal-amd64-2"
481481
}
482482

483483
variable "teleport_license" {

patterns/vsi-extension/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ variable "access_tags" {
5353
variable "image_name" {
5454
description = "The image ID used for the VSI. You can run the `ibmcloud is images` CLI command to find available images. The IDs are different in each region."
5555
type = string
56-
default = "ibm-ubuntu-22-04-3-minimal-amd64-1"
56+
default = "ibm-ubuntu-22-04-3-minimal-amd64-2"
5757
}
5858

5959
variable "vsi_instance_profile" {

patterns/vsi-quickstart/variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ variable "override_json_string" {
231231
"vsi": [
232232
{
233233
"boot_volume_encryption_key_name": "slz-vsi-volume-key",
234-
"image_name": "ibm-ubuntu-22-04-3-minimal-amd64-1",
234+
"image_name": "ibm-ubuntu-22-04-3-minimal-amd64-2",
235235
"machine_type": "cx2-4x8",
236236
"name": "jump-box",
237237
"resource_group": "management-rg",
@@ -276,7 +276,7 @@ variable "override_json_string" {
276276
},
277277
{
278278
"boot_volume_encryption_key_name": "slz-vsi-volume-key",
279-
"image_name": "ibm-ubuntu-22-04-3-minimal-amd64-1",
279+
"image_name": "ibm-ubuntu-22-04-3-minimal-amd64-2",
280280
"machine_type": "cx2-4x8",
281281
"name": "workload-server",
282282
"resource_group": "workload-rg",

patterns/vsi/module/variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ variable "use_random_cos_suffix" {
125125
variable "vsi_image_name" {
126126
description = "VSI image name. Use the IBM Cloud CLI command `ibmcloud is images` to see availabled images."
127127
type = string
128-
default = "ibm-ubuntu-22-04-3-minimal-amd64-1"
128+
default = "ibm-ubuntu-22-04-3-minimal-amd64-2"
129129
}
130130

131131
variable "vsi_instance_profile" {
@@ -407,7 +407,7 @@ variable "teleport_instance_profile" {
407407
variable "teleport_vsi_image_name" {
408408
description = "Teleport VSI image name. Use the IBM Cloud CLI command `ibmcloud is images` to see availabled images."
409409
type = string
410-
default = "ibm-ubuntu-22-04-3-minimal-amd64-1"
410+
default = "ibm-ubuntu-22-04-3-minimal-amd64-2"
411411
}
412412

413413
variable "teleport_license" {

patterns/vsi/override.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@
316316
"vsi": [
317317
{
318318
"boot_volume_encryption_key_name": "slz-vsi-volume-key",
319-
"image_name": "ibm-ubuntu-22-04-3-minimal-amd64-1",
319+
"image_name": "ibm-ubuntu-22-04-3-minimal-amd64-2",
320320
"machine_type": "cx2-4x8",
321321
"name": "management-server",
322322
"security_group": {
@@ -380,7 +380,7 @@
380380
},
381381
{
382382
"boot_volume_encryption_key_name": "slz-vsi-volume-key",
383-
"image_name": "ibm-ubuntu-22-04-3-minimal-amd64-1",
383+
"image_name": "ibm-ubuntu-22-04-3-minimal-amd64-2",
384384
"machine_type": "cx2-4x8",
385385
"name": "workload-server",
386386
"security_group": {

patterns/vsi/variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ variable "use_random_cos_suffix" {
131131
variable "vsi_image_name" {
132132
description = "VSI image name. Use the IBM Cloud CLI command `ibmcloud is images` to see availabled images."
133133
type = string
134-
default = "ibm-ubuntu-22-04-3-minimal-amd64-1"
134+
default = "ibm-ubuntu-22-04-3-minimal-amd64-2"
135135
}
136136

137137
variable "vsi_instance_profile" {
@@ -413,7 +413,7 @@ variable "teleport_instance_profile" {
413413
variable "teleport_vsi_image_name" {
414414
description = "Teleport VSI image name. Use the IBM Cloud CLI command `ibmcloud is images` to see availabled images."
415415
type = string
416-
default = "ibm-ubuntu-22-04-3-minimal-amd64-1"
416+
default = "ibm-ubuntu-22-04-3-minimal-amd64-2"
417417
}
418418

419419
variable "teleport_license" {

0 commit comments

Comments
 (0)