Skip to content
Snippets Groups Projects
Commit 810c797a authored by McDonnell, Marshall's avatar McDonnell, Marshall
Browse files

Set image uuid to Rocky 9 for all

parent 37049e98
No related branches found
No related tags found
No related merge requests found
Pipeline #625601 passed
......@@ -43,7 +43,7 @@ module "espd_bootstrap_runners" {
prefix = "espd-bootstrapper"
runner_count = 1
flavor = "c2.small"
image_uuid = "ac23b9b7-456e-42ac-a0c5-9fdf00873689" # Rocky 9
image_uuid = var.image_uuid
volume_size = 10
ssh_key_file = var.ssh_key_file
runner_tokens = local.runner_tokens_bootstrapper
......@@ -60,7 +60,7 @@ module "espd_green_runners" {
prefix = "espd-green"
runner_count = 3
flavor = var.flavor
image_uuid = "ac23b9b7-456e-42ac-a0c5-9fdf00873689" # Rocky 9
image_uuid = var.image_uuid
volume_size = var.volume_size
ssh_key_file = var.ssh_key_file
runner_tokens = local.runner_tokens_green
......
......@@ -11,8 +11,8 @@ variable "security_group_description" {
}
variable "image_uuid" {
default = "e28e9de5-d15b-4f49-8572-5081f3d0d2ec"
description = "Image UUID for OS (default is ORC_Ubuntu-22.04_v20240207_1 uuid)"
default = "ac23b9b7-456e-42ac-a0c5-9fdf00873689"
description = "Image UUID for OS (default is ORC_Rocky-9_v20241008_1 uuid)"
}
variable "flavor" {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment