Skip to content

Commit

Permalink
feat(platform): add support for Amazon Linux 2023
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
GrzesiekO committed Jul 26, 2024
1 parent f7996b8 commit 9a6bd23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/perforce/helix-core/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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} \
Expand Down

0 comments on commit 9a6bd23

Please sign in to comment.