From 9a6bd23e02a88d8b6ba543352fe7fd732342e76e Mon Sep 17 00:00:00 2001 From: Greg O <84852800+GrzesiekO@users.noreply.github.com> Date: Fri, 26 Jul 2024 09:05:06 +0200 Subject: [PATCH] feat(platform): add support for Amazon Linux 2023 This commit adds support for running the application on Amazon Linux 2023. The necessary configuration changes have been made to the deployment scripts and the application has been tested to ensure compatibility with the new platform. Especially in terraform so it properly refernces new AMI. --- modules/perforce/helix-core/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/perforce/helix-core/main.tf b/modules/perforce/helix-core/main.tf index 6634d106..cd1a3837 100644 --- a/modules/perforce/helix-core/main.tf +++ b/modules/perforce/helix-core/main.tf @@ -35,7 +35,7 @@ resource "aws_instance" "helix_core_instance" { user_data = <<-EOT #!/bin/bash - /home/rocky/p4_configure.sh /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 \ + /home/rocky/p4_configure.sh /dev/sdf /dev/sdg /dev/sdh \ ${var.server_type} \ ${var.helix_core_super_user_username_secret_arn == null ? awscc_secretsmanager_secret.helix_core_super_user_username[0].secret_id : var.helix_core_super_user_username_secret_arn} \ ${var.helix_core_super_user_password_secret_arn == null ? awscc_secretsmanager_secret.helix_core_super_user_password[0].secret_id : var.helix_core_super_user_password_secret_arn} \