From 0daa9efccbecaf77a2087e9c479284cffe4e8ccf Mon Sep 17 00:00:00 2001 From: LeoDiazL Date: Wed, 14 Feb 2024 17:20:05 -0300 Subject: [PATCH] Small fix in EKS user-data file --- operations/_scripts/generate/generate_bitops_config.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/operations/_scripts/generate/generate_bitops_config.sh b/operations/_scripts/generate/generate_bitops_config.sh index 9a69db57..86ebe505 100755 --- a/operations/_scripts/generate/generate_bitops_config.sh +++ b/operations/_scripts/generate/generate_bitops_config.sh @@ -120,7 +120,7 @@ fi if [[ $(alpha_only "$AWS_EKS_CREATE") == true ]]; then if [ -s "$GITHUB_WORKSPACE/$AWS_EKS_INSTANCE_USER_DATA_FILE" ] && [ -f "$GITHUB_WORKSPACE/$AWS_EKS_INSTANCE_USER_DATA_FILE" ]; then echo "Moving $AWS_EKS_INSTANCE_USER_DATA_FILE to be used by Terraform during EKS Nodes creation" - mv "$GITHUB_WORKSPACE/$AWS_EKS_INSTANCE_USER_DATA_FILE" "$GITHUB_ACTION_PATH/operations/deployment/terraform/eks/aws_eks_incoming_user_data_script.sh" + mv "$GITHUB_WORKSPACE/$AWS_EKS_INSTANCE_USER_DATA_FILE" "$GITHUB_ACTION_PATH/operations/deployment/terraform/aws/aws_eks_incoming_user_data_script.sh" fi fi # Below we will be creating the config file, one for the action itself, other to store as an artifact after.