-
CodeDeploy, permission to perform operations 문제 해결ETC 2023.10.25 14:59
CodeDeploy 블루/그린 배포할때 'does not give you permission to perform operations in the following AWS service: AmazonAutoScaling.'에러로그가 발생하는 경우에 아래 Policy 생성후, CodeDeploy의 역할에 추가해야됨. { "Version": "2012-10-17", "Statement": [ { "Sid": "VisualEditor0", "Effect": "Allow", "Action": [ "iam:PassRole", "ec2:CreateTags", "ec2:RunInstances" ], "Resource": "*" } ] } 끝.
-
Linux 및 맥(MacOS)에서 ProxyJump 기능 활용Linux 2023.09.07 11:32
Host [proxy server name] HostName [proxy or jump host domain or ip address] Port [port number] User [username] IdentityFile [proxy or jump host identity key file] Host [remote server name] HostName [server domain or ip address] Port [port number] User [username] IdentityFile [server identity key file] ProxyJump [proxy server name] 끝.
-
Lambda를 이용한 EC2 시작/중지 자동화Lambda 2022.08.11 17:50
[목표] 지정한 시간에 CloudWatch 이벤트를 발생시켜 Lambda를 호출하고, Lambda가 EC2 Instance를 제어(Start, Stop) 1. Lambda를 위한 IAM 정책 생성 { "Version": "2012-10-17", "Statement": [ { "Sid": "VisualEditor0", "Effect": "Allow", "Action": [ "ec2:StartInstances", "ec2:StopInstances" ], "Resource": "arn:aws:ec2:*:*:instance/*" }, { "Sid": "VisualEditor1", "Effect": "Allow", "Action": "ec2:DescribeInstances", "Resource": "*" } ] ..