From 6a2434622812c04266ec814e47cdf437e654d9a1 Mon Sep 17 00:00:00 2001 From: minseokkang <30401054+kkminseok@users.noreply.github.com> Date: Thu, 10 Nov 2022 13:31:36 +0900 Subject: [PATCH] fix : codeDeploy owner change --- appspec.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/appspec.yml b/appspec.yml index 290d9a1..afa6df6 100644 --- a/appspec.yml +++ b/appspec.yml @@ -2,17 +2,17 @@ version: 0.0 os: linux files: - source: / - destination: /home/ubuntu/app + destination: /home/linux/app overwrite: yes permissions: - object: / pattern: "**" - owner: ubuntu - group: ubuntu + owner: ec2-user + group: ec2-user hooks: ApplicationStart: - location: deploy.sh timeout: 60 - runas: ubuntu \ No newline at end of file + runas: ec2-user