SlideShare a Scribd company logo
1 of 40
Download to read offline
© 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved.
IAM 을 잘 알아야 보안도
쉬워진다.
이것은 꼭 알고 가자!신은수
Security Specialist Solutions Architect
© 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved.
• 구독한 모든 서비스에 대한 접근
• 과금 정보에 대한 접근
• 콘솔 및 API 사용
• 기술 지원 계약 변경
Account Owner ID (Root Account)
AWS 서비스 사용 – 계정 생성
• 지정된 일부 서비스에 대한 접근
• 콘솔 및 API 사용
• 기술지원 요청
IAM 사용자, 역할, Federated 사용자
• 지정된 일부 서비스에 대한 접근
• 콘솔 및 API 사용
어플리케이션을 위한 임시 보안 자격 증명
© 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved.
AWS 서비스 사용 – Console 기반 작업
! 쉽게 시작할 수 있다.
" 반복작업에 적합하지 않다.
" 시간이 오래 걸린다. 수작업
High
level
Low
level
© 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved.
AWS 서비스 사용 – Script 기반 작업
Script 기반
수작업
! 반복 작업에 적합하다.
! 원하는 항목에 대한 수정이 용이하다.
" 리소스의 준비 상태 확인이 어렵다.
" 문제 발생 시 복원이 어렵다.
High
level
Low
level
© 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved.
AWS 서비스 사용 – 프로비저닝 엔진 사용
AWS CloudFormation
template
(JSON/YAML)
HashiCorp Configuration
Language (HCL)
원하는 형상에 대한 정의
Declarative 방식
Script 기반
수작업
High
level
Low
level
! 자동화 구현에 용이하다.
! 반복작업에 적합하다.
! 에러 발생 시 원복이 쉽다.
" 최초 구현이 복잡하다.
© 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Troposphere Python
SparkleFormation Ruby
GoFormation Go
…
AWS
CloudFormation
Template
! 코드 기반♥
! 원하는 형상에 대한 정의
# 초기 코딩의 복잡성
DOM 모델
Declarative 방식
Script 기반
수작업
High
level
Low
level
AWS 서비스 사용 – DOM 모델 적용
© 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved.
AWS
CloudFormation
template
AWS CDK application
Stack(s)
Construct Construct
Component 화
DOM 기반
Declarative 기반
Script 기반
수작업
High
level
Low
level
리소스 생성
AWS 서비스 사용 – CDK 사용 Developer preview
© 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved.
AWS Cloud
결국 중요한 건 - API
VPC
CloudWatch Cloud Formation CloudTrail Event
ELB
사용자 요청
Command Line Interface
SDK
Management Console
API
API API
© 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved.
SigV4 를 사용한 API 호출 예제
POST /API-Request HTTP/1.1
Host: any-aws-services.us-east-1.amazonaws.com
Content-Type: application/x-www-form-urlencoded
Authorization: AWS4-HMAC-SHA256
Credential=AccessKeyIDEXAMPLE/20181126/us-east-1/sqs/aws4_request,
SignedHeaders=content-type;host;x-amz-date,
Signature=b97dfa904a5beffSecretKey를포함한16진수
61c982a1b6f458b799221646efd99d3219ec94cdf2500
X-Amz-Date: 20190418T123600Z
def sign(key, msg):
return hmac.new(key, msg.encode("utf-8"), hashlib.sha256).digest()
def getSignatureKey(key, dateStamp, regionName, serviceName):
kDate = sign(("AWS4" + key).encode("utf-8"), dateStamp)
kRegion = sign(kDate, regionName)
kService = sign(kRegion, serviceName)
kSigning = sign(kService, "aws4_request")
return kSigning
© 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved.
I A M
© 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved.
IAM Policy 란?
Policy 는 AWS 서비스와 리소스에 대한 인가 기능을 제공합니다.
Policy 를 정의할 때는 어떤 IAM Principal 이 어떤 Condition 에서 AWS 의 어떤
Resource 에 대해 어떤 Action 을 허용 혹은 차단할 것인지를 지정합니다.
IAM 은 여러분이 정의한 Policy 를 기반으로 API 요청을 검사/평가 하게되며
최종적으로 허용 혹은 차단을 결정합니다.
© 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved.
IAM Policy 의 종류와 사용 목적
AWS Organizations
Service Control Policies (SCPs)
Specific AWS ser vices
Resource-based Policies
AWS Identity and Access Management (IAM)
Permission Policies, Permission Boundaries
AWS Security Token Ser vice (AWS STS)
Session Policies
VPC Endpoints
Endpoint Policies
어카운트 내의 특정 Principal 에 대한
서비스 제어
역할 전환이나 Federation 시 권한을
제어
다수 계정 접속이나 서비스로부터의
접근을 제어
VPC Endpoint 에서 서비스로의 접근을
제어
IAM Principal(Users, Roles)에 대한 상세
권한 설정 및 사용 가능한 권한 경계
모든 Policy 는 동일한 문법을 사용(S3 ACL
예외)
© 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved.
IAM Policy 의 종류와 사용 목적
© 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved.
IAM Policy 의 구조
{
"Statement":[{
"Effect":”Allow or
Deny",
"Principal":"principal",
"Action":"action",
"Resource":"arn",
"Condition":{
"condition":{
"key":"value" }
}
}
]
}
Principal – 접근을 허용 혹은 차단하고자 하는 대상
"Principal":"AWS":"arn:aws:iam::123456789012:user/username"
Action – 허용 혹은 차단하고자하는 접근 타입
"Action":"s3:GetObject"
Resource – 요청의 목적지가 되는 서비스
"Resource":"arn:aws:sqs:us-west-2:123456789012:queue1"
Condition – 명시된 조건 유효하다고 판단될 수 있는 조건
"StringEqualsIfExists": {"aws:RequestTag/project": [“Pickles“]}
Effect – 명시된 정책에 대한 허용 혹은 차단
© 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved.
IAM 권한 할당 원리의 이해
© 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Permission
Policy
명시적
Deny
API
요청
Permission
Boundary
묵시적
Deny
명시적
Deny
Allow
묵시적
Deny
Allow
권한 할당 원칙 #1 – 명시적 Deny, 묵시적 Deny
Deny Deny
© 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved.
권한 할당 원칙 #2 – 명시적 허용
Permission
Policy
명시적
Deny
API 요청
Permission
Boundary
Allow Allow
요청 허용
© 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved.
권한 할당 예제
Permission PolicyPermission Boundary
API 요청: s3:GetObject / 버킷명: KoreaSummit
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"logs:CreateLogGroup",
"logs:CreateLogStream”,
"logs:PutLogEvents”
],
"Resource": "arn:aws:logs:*:*:*"
}
}
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"logs:CreateLogGroup",
"logs:CreateLogStream",
"logs:PutLogEvents",
"s3:*"
],
"Resource": "*"
}
]
}
© 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved.
적용된 권한 결과
Permission
Policy
명시적
Deny
API
요청:
s3:getobject
Permission
Boundary
Allow
요청 차단
묵시적
Deny
© 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Permission PolicyPermission Boundary
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"logs:CreateLogGroup",
"logs:CreateLogStream”,
"logs:PutLogEvents”
],
"Resource": "arn:aws:logs:*:*:*"
},
{
"Effect": "Allow",
"Action": ["s3:GetObject"],
"Resource”:"arn:aws:s3:::KoreaSummit/*"
}
}
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"logs:CreateLogGroup",
"logs:CreateLogStream",
"logs:PutLogEvents",
"s3:*"
],
"Resource": "*"
}
]
}
권한 할당 예제
API 요청: s3:GetObject / 버킷명: KoreaSummit
© 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Permission
Policy
명시적
Deny
API
요청:
s3:getobject
Permission
Boundary
Allow
요청 허용
Allow
적용된 권한 결과
© 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Permission PolicyPermission Boundary
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"logs:CreateLogGroup",
"logs:CreateLogStream”,
"logs:PutLogEvents”
],
"Resource": "arn:aws:logs:*:*:*"
},
{
"Effect": "Allow",
"Action": ["s3:GetObject"],
"Resource”:"arn:aws:s3:::KoreaSummit/*"
}
}
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"logs:CreateLogGroup",
"logs:CreateLogStream",
"logs:PutLogEvents",
],
"Resource": "*"
}
]
}
API 요청: s3:GetObject / 버킷명: KoreaSummit
권한 할당 예제
© 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Permission
Policy
명시적
Deny
API
요청:
s3:getobject
Permission
Boundary
묵시적
Deny
Allow
적용된 권한 결과
요청 차단
© 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved.
명시적
Deny
API
요청 Permission
Boundary
SCP
Permission
Policy
Resource
Policy
허용 권한 획득 조건 – 동일 계정
© 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved.
API
요청
허용 권한 획득 조건 – 다른 계정
Resource
Policy
명시적
Deny
Permission
Boundary
SCP
Permission
Policy
목적지 계정출발지 계정
© 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved.
허용 권한 획득 조건 – 단일 계정
Permission
Policy Resource Policy
최종 획득 권한
s3:*, ec2:*
"Action":["ec2:*"] "Action":["s3:*"]
© 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved.
허용 권한 획득 조건 – 교차 조건
Permission
Boundary
Permission
Policy
최종 획득
권한
© 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved.
허용 권한 획득 조건
Permission
Boundary
Permission
Policy
Service control
policy
Session
Policy
Resource Policy
최종 획득
권한
© 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved.
IAM 사용 TIP
© 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved.
IAM Role 의 활용
보안성
임시 보안 자격
증명의 사용
편리성
다수의 사용자나
어플리케이션이 사용할 수
있으므로 권한 관리가 편리
무료
별도의 과금 없음
© 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved.
IAM Role 활용 – IAM 사용자 권한 최소화
User: UserA
IAM Policy:
Allow: sts:AssumeRole
Deny: *(AssumeRole 을 제외)
Group: AccessOnly
할당된 정책
Role: EC2
Administrator
Policy:
EC2AdminPolicy
IAM Policy:
Allow: ec2:*
Deny: *(AssumeRole 을 제외)
Role 로 전환
적용된 정책
Action: EC2 Create
Instance
실행
Logs:
“userIdentity”: {
“type”:“AssumedRole”,
…
“username”:“UserA”
로그
개별 사용자에게
할당되는 권한을 최소화
특정 역할에 할당되는
권한을 최적화
© 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved.
IAM Role – EC2 상의 어플리케이션
"Code" : "Success",
"LastUpdated" : "2019-04-12T02:11:34Z",
"Type" : "AWS-HMAC",
"AccessKeyId" : "ASIA4M5UW2CW5EHAWFAN",
"SecretAccessKey" : "v1dmbdKpv4lB94VhU8ku+c4e2hOexfhNf4nbod9+",
“Token”:"AgoJb3JpZ2luX2VjENL///////////aYUOtiSb6VVpWdTsa8XUt4Ug9VEvXX6MmE7nk1bc9ipcnlLrCrVMvSVXHNsuzNPaZsR9LOIoOQ5gHh4bImVZrUqWQahmPmQcCGKBp1+XuCaoDJ
r8QjM8rau2/fhT1JLplNJ3J5U9KS+iHQAA6jGgnW5QVZO+=",
"Expiration" : "2019-04-12T08:28:32Z"
EC2
S3 Bucket
Token 기반 API 호출
어플리케이션
Role 이 할당된 EC2 인스턴스의 자격증명 정보 확인 – Session Timeout 에 유의
(IMDS) URL: http://169.254.169.254/latest/meta-data/iam/security-credentials/role-name
© 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved.
멀티 계정 환경에서의 자원 공유
Prod1GWaMPLG.EoM
2EES 740 1111(((())))
ddD-roLG
dGU1GWaMPLG.EoM
2EES 740 1()45,-./01(
ddD-roLG p sh 보안
u격 xfo 이m{l
2@S 2P7 호출
72: TRGr0 3oD
ddD-roLG k a한
sh 보안 u격 xf
획c
3oD p 2EEGRR 8Gy
e 이m{l rx
ddD-roLG n 2@S aEEoTnS dGU1GWaMPLG.EoM
1()45,-./01() p 72: URGr e id
{ "SSaSGMGnS"0 A
{
"5ffGES"0"2LLow""
"PrinEiPaL"0{"2@S"0"1()45,-./01("}"
"2ESion"0"RSR02RRTMGRoLG"
}B}
2EEoTnS 3 k t는 ddD-roLG k a한 v근o 허m{는 보안 wyo 3oD k[ }당
{ "SSaSGMGnS"0 A
{
"5ffGES"0 "2LLow""
"2ESion"0 "RSR02RRTMGRoLG""
"RGRoTrEG"0 "arn0awR0iaM001111(((())))0roLG/ddD-roLG"
}B}
ddD-roLG k }당b ]한
{ "SSaSGMGnS"0 A
{ "2ESion"0
A
"dynaModD06GS7SGM""
"dynaModD03aSEI6GS7SGM""
"dynaModD04GREriDGTaDLG""
"dynaModD09iRSTaDLGR"
B"
"5ffGES"0 "2LLow""
"RGRoTrEG"0"arn0awR0dynaModD0TR-GaRS-10
1()45,-./01(0SaDLG/DooKR"
}B}
DooKR
© 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved.
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "ec2:*",
"Resource": "*",
"Condition": {
"StringEquals": {
"ec2:ResourceTag/Project" : "Blue"
}
}
}
]
}
Project=Blue
VPC
Project=Green
TAG 를 활용한 접근 권한 제어
© 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved.
IAM 정책 생성 자동화
Product 계정 보안 계정
개발 팀 테스트 계정 Sandbox
1. 업로드된 IAM Policy
유효성 검증
2. 필수 ”명시적 Deny”
추가
3. 사용자 계정 내 최종
Policy 생성
© 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Access Advisor 를 활용한 미사용 권한 탐지
"ServicesLastAccessed": [
{
"LastAuthenticated": "2018-11-21T17:41:15Z",
"LastAuthenticatedEntity": "arn:aws:iam::123456789012:role
"ServiceName": "Amazon EC2",
"ServiceNamespace": "ec2", "TotalAuthenticatedEntities": 1
},
© 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved.
오픈 소스를 활용한 IAM 관리
Aardvark Repokid
미사용 서비스 삭제
Policy 사용 체크
90일 이상?
미사용 서비스?
커스텀 정책
Yes
Yes
Yes
No
No
No
반복 체크
IAM 의 Access Advisor 정보를 조회 불필요한 권한 삭제
© 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved.
끝내기 전에 잠깐!!
© 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved.
AWS WAF, Shield Advanced 서울 리전 지원!!

More Related Content

What's hot

데브옵스 엔지니어를 위한 신규 운영 서비스 - 김필중, AWS 개발 전문 솔루션즈 아키텍트 / 김현민, 메가존클라우드 솔루션즈 아키텍트 :...
데브옵스 엔지니어를 위한 신규 운영 서비스 - 김필중, AWS 개발 전문 솔루션즈 아키텍트 / 김현민, 메가존클라우드 솔루션즈 아키텍트 :...데브옵스 엔지니어를 위한 신규 운영 서비스 - 김필중, AWS 개발 전문 솔루션즈 아키텍트 / 김현민, 메가존클라우드 솔루션즈 아키텍트 :...
데브옵스 엔지니어를 위한 신규 운영 서비스 - 김필중, AWS 개발 전문 솔루션즈 아키텍트 / 김현민, 메가존클라우드 솔루션즈 아키텍트 :...Amazon Web Services Korea
 
Arm 기반의 AWS Graviton 프로세서로 구동되는 AWS 인스턴스 살펴보기 - 김종선, AWS솔루션즈 아키텍트:: AWS Summi...
Arm 기반의 AWS Graviton 프로세서로 구동되는 AWS 인스턴스 살펴보기 - 김종선, AWS솔루션즈 아키텍트:: AWS Summi...Arm 기반의 AWS Graviton 프로세서로 구동되는 AWS 인스턴스 살펴보기 - 김종선, AWS솔루션즈 아키텍트:: AWS Summi...
Arm 기반의 AWS Graviton 프로세서로 구동되는 AWS 인스턴스 살펴보기 - 김종선, AWS솔루션즈 아키텍트:: AWS Summi...Amazon Web Services Korea
 
AWS Control Tower
AWS Control TowerAWS Control Tower
AWS Control TowerCloudHesive
 
AWS 클라우드 비용 최적화를 위한 TIP - 임성은 AWS 매니저
AWS 클라우드 비용 최적화를 위한 TIP - 임성은 AWS 매니저AWS 클라우드 비용 최적화를 위한 TIP - 임성은 AWS 매니저
AWS 클라우드 비용 최적화를 위한 TIP - 임성은 AWS 매니저Amazon Web Services Korea
 
Aws organizations
Aws organizationsAws organizations
Aws organizationsOlaf Conijn
 
Getting Started with Amazon Inspector
Getting Started with Amazon InspectorGetting Started with Amazon Inspector
Getting Started with Amazon InspectorAmazon Web Services
 
데이터 분석가를 위한 신규 분석 서비스 - 김기영, AWS 분석 솔루션즈 아키텍트 / 변규현, 당근마켓 소프트웨어 엔지니어 :: AWS r...
데이터 분석가를 위한 신규 분석 서비스 - 김기영, AWS 분석 솔루션즈 아키텍트 / 변규현, 당근마켓 소프트웨어 엔지니어 :: AWS r...데이터 분석가를 위한 신규 분석 서비스 - 김기영, AWS 분석 솔루션즈 아키텍트 / 변규현, 당근마켓 소프트웨어 엔지니어 :: AWS r...
데이터 분석가를 위한 신규 분석 서비스 - 김기영, AWS 분석 솔루션즈 아키텍트 / 변규현, 당근마켓 소프트웨어 엔지니어 :: AWS r...Amazon Web Services Korea
 
KB국민은행은 시작했다 -  쉽고 빠른 클라우드 거버넌스 적용 전략 - 강병억 AWS 솔루션즈 아키텍트 / 장강홍 클라우드플랫폼단 차장, ...
KB국민은행은 시작했다 -  쉽고 빠른 클라우드 거버넌스 적용 전략 - 강병억 AWS 솔루션즈 아키텍트 / 장강홍 클라우드플랫폼단 차장, ...KB국민은행은 시작했다 -  쉽고 빠른 클라우드 거버넌스 적용 전략 - 강병억 AWS 솔루션즈 아키텍트 / 장강홍 클라우드플랫폼단 차장, ...
KB국민은행은 시작했다 -  쉽고 빠른 클라우드 거버넌스 적용 전략 - 강병억 AWS 솔루션즈 아키텍트 / 장강홍 클라우드플랫폼단 차장, ...Amazon Web Services Korea
 
AWS Security 솔루션 자세히 살펴보기 :: 신용녀 :: AWS Finance Seminar
AWS Security 솔루션 자세히 살펴보기 :: 신용녀 :: AWS Finance SeminarAWS Security 솔루션 자세히 살펴보기 :: 신용녀 :: AWS Finance Seminar
AWS Security 솔루션 자세히 살펴보기 :: 신용녀 :: AWS Finance SeminarAmazon Web Services Korea
 
IAM Deep Dive - Custom IAM Policies with Conditions
IAM Deep Dive - Custom IAM Policies with ConditionsIAM Deep Dive - Custom IAM Policies with Conditions
IAM Deep Dive - Custom IAM Policies with ConditionsBryant Poush
 
AWS Control Tower를 통한 클라우드 보안 및 거버넌스 설계 - 김학민 :: AWS 클라우드 마이그레이션 온라인
AWS Control Tower를 통한 클라우드 보안 및 거버넌스 설계 - 김학민 :: AWS 클라우드 마이그레이션 온라인AWS Control Tower를 통한 클라우드 보안 및 거버넌스 설계 - 김학민 :: AWS 클라우드 마이그레이션 온라인
AWS Control Tower를 통한 클라우드 보안 및 거버넌스 설계 - 김학민 :: AWS 클라우드 마이그레이션 온라인Amazon Web Services Korea
 
Identity and Access Management: The First Step in AWS Security
Identity and Access Management: The First Step in AWS SecurityIdentity and Access Management: The First Step in AWS Security
Identity and Access Management: The First Step in AWS SecurityAmazon Web Services
 
AWS 기반 클라우드 아키텍처 모범사례 - 삼성전자 개발자 포털/개발자 워크스페이스 - 정영준 솔루션즈 아키텍트, AWS / 유현성 수석,...
AWS 기반 클라우드 아키텍처 모범사례 - 삼성전자 개발자 포털/개발자 워크스페이스 - 정영준 솔루션즈 아키텍트, AWS / 유현성 수석,...AWS 기반 클라우드 아키텍처 모범사례 - 삼성전자 개발자 포털/개발자 워크스페이스 - 정영준 솔루션즈 아키텍트, AWS / 유현성 수석,...
AWS 기반 클라우드 아키텍처 모범사례 - 삼성전자 개발자 포털/개발자 워크스페이스 - 정영준 솔루션즈 아키텍트, AWS / 유현성 수석,...Amazon Web Services Korea
 
AWS Summit Seoul 2015 -CloudFront와 Route53 기반 콘텐츠 배포 전략 (GS네오텍-박정수)
AWS Summit Seoul 2015 -CloudFront와 Route53 기반 콘텐츠 배포 전략 (GS네오텍-박정수)AWS Summit Seoul 2015 -CloudFront와 Route53 기반 콘텐츠 배포 전략 (GS네오텍-박정수)
AWS Summit Seoul 2015 -CloudFront와 Route53 기반 콘텐츠 배포 전략 (GS네오텍-박정수)Amazon Web Services Korea
 
금융권 고객을 위한 클라우드 보안 및 규정 준수 가이드 - 이대근 시큐리티 어슈어런스 매니저, AWS :: AWS Summit Seoul ...
금융권 고객을 위한 클라우드 보안 및 규정 준수 가이드 - 이대근 시큐리티 어슈어런스 매니저, AWS :: AWS Summit Seoul ...금융권 고객을 위한 클라우드 보안 및 규정 준수 가이드 - 이대근 시큐리티 어슈어런스 매니저, AWS :: AWS Summit Seoul ...
금융권 고객을 위한 클라우드 보안 및 규정 준수 가이드 - 이대근 시큐리티 어슈어런스 매니저, AWS :: AWS Summit Seoul ...Amazon Web Services Korea
 
AWS DirectConnect 구성 가이드 (김용우) - 파트너 웨비나 시리즈
AWS DirectConnect 구성 가이드 (김용우) -  파트너 웨비나 시리즈AWS DirectConnect 구성 가이드 (김용우) -  파트너 웨비나 시리즈
AWS DirectConnect 구성 가이드 (김용우) - 파트너 웨비나 시리즈Amazon Web Services Korea
 
컨테이너 및 서버리스를 위한 효율적인 CI/CD 아키텍처 구성하기 - 현창훈 데브옵스 엔지니어, Flex / 송주영 데브옵스 엔지니어, W...
컨테이너 및 서버리스를 위한 효율적인 CI/CD 아키텍처 구성하기 - 현창훈 데브옵스 엔지니어, Flex / 송주영 데브옵스 엔지니어, W...컨테이너 및 서버리스를 위한 효율적인 CI/CD 아키텍처 구성하기 - 현창훈 데브옵스 엔지니어, Flex / 송주영 데브옵스 엔지니어, W...
컨테이너 및 서버리스를 위한 효율적인 CI/CD 아키텍처 구성하기 - 현창훈 데브옵스 엔지니어, Flex / 송주영 데브옵스 엔지니어, W...Amazon Web Services Korea
 

What's hot (20)

데브옵스 엔지니어를 위한 신규 운영 서비스 - 김필중, AWS 개발 전문 솔루션즈 아키텍트 / 김현민, 메가존클라우드 솔루션즈 아키텍트 :...
데브옵스 엔지니어를 위한 신규 운영 서비스 - 김필중, AWS 개발 전문 솔루션즈 아키텍트 / 김현민, 메가존클라우드 솔루션즈 아키텍트 :...데브옵스 엔지니어를 위한 신규 운영 서비스 - 김필중, AWS 개발 전문 솔루션즈 아키텍트 / 김현민, 메가존클라우드 솔루션즈 아키텍트 :...
데브옵스 엔지니어를 위한 신규 운영 서비스 - 김필중, AWS 개발 전문 솔루션즈 아키텍트 / 김현민, 메가존클라우드 솔루션즈 아키텍트 :...
 
Arm 기반의 AWS Graviton 프로세서로 구동되는 AWS 인스턴스 살펴보기 - 김종선, AWS솔루션즈 아키텍트:: AWS Summi...
Arm 기반의 AWS Graviton 프로세서로 구동되는 AWS 인스턴스 살펴보기 - 김종선, AWS솔루션즈 아키텍트:: AWS Summi...Arm 기반의 AWS Graviton 프로세서로 구동되는 AWS 인스턴스 살펴보기 - 김종선, AWS솔루션즈 아키텍트:: AWS Summi...
Arm 기반의 AWS Graviton 프로세서로 구동되는 AWS 인스턴스 살펴보기 - 김종선, AWS솔루션즈 아키텍트:: AWS Summi...
 
AWS Control Tower
AWS Control TowerAWS Control Tower
AWS Control Tower
 
AWS 클라우드 비용 최적화를 위한 TIP - 임성은 AWS 매니저
AWS 클라우드 비용 최적화를 위한 TIP - 임성은 AWS 매니저AWS 클라우드 비용 최적화를 위한 TIP - 임성은 AWS 매니저
AWS 클라우드 비용 최적화를 위한 TIP - 임성은 AWS 매니저
 
Deep dive into AWS IAM
Deep dive into AWS IAMDeep dive into AWS IAM
Deep dive into AWS IAM
 
Aws organizations
Aws organizationsAws organizations
Aws organizations
 
Getting Started with Amazon Inspector
Getting Started with Amazon InspectorGetting Started with Amazon Inspector
Getting Started with Amazon Inspector
 
데이터 분석가를 위한 신규 분석 서비스 - 김기영, AWS 분석 솔루션즈 아키텍트 / 변규현, 당근마켓 소프트웨어 엔지니어 :: AWS r...
데이터 분석가를 위한 신규 분석 서비스 - 김기영, AWS 분석 솔루션즈 아키텍트 / 변규현, 당근마켓 소프트웨어 엔지니어 :: AWS r...데이터 분석가를 위한 신규 분석 서비스 - 김기영, AWS 분석 솔루션즈 아키텍트 / 변규현, 당근마켓 소프트웨어 엔지니어 :: AWS r...
데이터 분석가를 위한 신규 분석 서비스 - 김기영, AWS 분석 솔루션즈 아키텍트 / 변규현, 당근마켓 소프트웨어 엔지니어 :: AWS r...
 
KB국민은행은 시작했다 -  쉽고 빠른 클라우드 거버넌스 적용 전략 - 강병억 AWS 솔루션즈 아키텍트 / 장강홍 클라우드플랫폼단 차장, ...
KB국민은행은 시작했다 -  쉽고 빠른 클라우드 거버넌스 적용 전략 - 강병억 AWS 솔루션즈 아키텍트 / 장강홍 클라우드플랫폼단 차장, ...KB국민은행은 시작했다 -  쉽고 빠른 클라우드 거버넌스 적용 전략 - 강병억 AWS 솔루션즈 아키텍트 / 장강홍 클라우드플랫폼단 차장, ...
KB국민은행은 시작했다 -  쉽고 빠른 클라우드 거버넌스 적용 전략 - 강병억 AWS 솔루션즈 아키텍트 / 장강홍 클라우드플랫폼단 차장, ...
 
AWS Security 솔루션 자세히 살펴보기 :: 신용녀 :: AWS Finance Seminar
AWS Security 솔루션 자세히 살펴보기 :: 신용녀 :: AWS Finance SeminarAWS Security 솔루션 자세히 살펴보기 :: 신용녀 :: AWS Finance Seminar
AWS Security 솔루션 자세히 살펴보기 :: 신용녀 :: AWS Finance Seminar
 
AWS Fargate on EKS 실전 사용하기
AWS Fargate on EKS 실전 사용하기AWS Fargate on EKS 실전 사용하기
AWS Fargate on EKS 실전 사용하기
 
IAM Deep Dive - Custom IAM Policies with Conditions
IAM Deep Dive - Custom IAM Policies with ConditionsIAM Deep Dive - Custom IAM Policies with Conditions
IAM Deep Dive - Custom IAM Policies with Conditions
 
AWS Control Tower를 통한 클라우드 보안 및 거버넌스 설계 - 김학민 :: AWS 클라우드 마이그레이션 온라인
AWS Control Tower를 통한 클라우드 보안 및 거버넌스 설계 - 김학민 :: AWS 클라우드 마이그레이션 온라인AWS Control Tower를 통한 클라우드 보안 및 거버넌스 설계 - 김학민 :: AWS 클라우드 마이그레이션 온라인
AWS Control Tower를 통한 클라우드 보안 및 거버넌스 설계 - 김학민 :: AWS 클라우드 마이그레이션 온라인
 
Identity and Access Management: The First Step in AWS Security
Identity and Access Management: The First Step in AWS SecurityIdentity and Access Management: The First Step in AWS Security
Identity and Access Management: The First Step in AWS Security
 
AWS networking fundamentals
AWS networking fundamentalsAWS networking fundamentals
AWS networking fundamentals
 
AWS 기반 클라우드 아키텍처 모범사례 - 삼성전자 개발자 포털/개발자 워크스페이스 - 정영준 솔루션즈 아키텍트, AWS / 유현성 수석,...
AWS 기반 클라우드 아키텍처 모범사례 - 삼성전자 개발자 포털/개발자 워크스페이스 - 정영준 솔루션즈 아키텍트, AWS / 유현성 수석,...AWS 기반 클라우드 아키텍처 모범사례 - 삼성전자 개발자 포털/개발자 워크스페이스 - 정영준 솔루션즈 아키텍트, AWS / 유현성 수석,...
AWS 기반 클라우드 아키텍처 모범사례 - 삼성전자 개발자 포털/개발자 워크스페이스 - 정영준 솔루션즈 아키텍트, AWS / 유현성 수석,...
 
AWS Summit Seoul 2015 -CloudFront와 Route53 기반 콘텐츠 배포 전략 (GS네오텍-박정수)
AWS Summit Seoul 2015 -CloudFront와 Route53 기반 콘텐츠 배포 전략 (GS네오텍-박정수)AWS Summit Seoul 2015 -CloudFront와 Route53 기반 콘텐츠 배포 전략 (GS네오텍-박정수)
AWS Summit Seoul 2015 -CloudFront와 Route53 기반 콘텐츠 배포 전략 (GS네오텍-박정수)
 
금융권 고객을 위한 클라우드 보안 및 규정 준수 가이드 - 이대근 시큐리티 어슈어런스 매니저, AWS :: AWS Summit Seoul ...
금융권 고객을 위한 클라우드 보안 및 규정 준수 가이드 - 이대근 시큐리티 어슈어런스 매니저, AWS :: AWS Summit Seoul ...금융권 고객을 위한 클라우드 보안 및 규정 준수 가이드 - 이대근 시큐리티 어슈어런스 매니저, AWS :: AWS Summit Seoul ...
금융권 고객을 위한 클라우드 보안 및 규정 준수 가이드 - 이대근 시큐리티 어슈어런스 매니저, AWS :: AWS Summit Seoul ...
 
AWS DirectConnect 구성 가이드 (김용우) - 파트너 웨비나 시리즈
AWS DirectConnect 구성 가이드 (김용우) -  파트너 웨비나 시리즈AWS DirectConnect 구성 가이드 (김용우) -  파트너 웨비나 시리즈
AWS DirectConnect 구성 가이드 (김용우) - 파트너 웨비나 시리즈
 
컨테이너 및 서버리스를 위한 효율적인 CI/CD 아키텍처 구성하기 - 현창훈 데브옵스 엔지니어, Flex / 송주영 데브옵스 엔지니어, W...
컨테이너 및 서버리스를 위한 효율적인 CI/CD 아키텍처 구성하기 - 현창훈 데브옵스 엔지니어, Flex / 송주영 데브옵스 엔지니어, W...컨테이너 및 서버리스를 위한 효율적인 CI/CD 아키텍처 구성하기 - 현창훈 데브옵스 엔지니어, Flex / 송주영 데브옵스 엔지니어, W...
컨테이너 및 서버리스를 위한 효율적인 CI/CD 아키텍처 구성하기 - 현창훈 데브옵스 엔지니어, Flex / 송주영 데브옵스 엔지니어, W...
 

Similar to IAM 정책을 잘 알아야 AWS 보안도 쉬워진다. 이것은 꼭 알고 가자! - 신은수 솔루션즈 아키텍트, AWS :: AWS Summit Seoul 2019

[Games on AWS 2019] AWS 입문자를 위한 초단기 레벨업 트랙 | AWS 레벨업 하기! : 보안 - 최원근 AWS 솔루션즈 ...
[Games on AWS 2019] AWS 입문자를 위한 초단기 레벨업 트랙 | AWS 레벨업 하기! : 보안 - 최원근 AWS 솔루션즈 ...[Games on AWS 2019] AWS 입문자를 위한 초단기 레벨업 트랙 | AWS 레벨업 하기! : 보안 - 최원근 AWS 솔루션즈 ...
[Games on AWS 2019] AWS 입문자를 위한 초단기 레벨업 트랙 | AWS 레벨업 하기! : 보안 - 최원근 AWS 솔루션즈 ...Amazon Web Services Korea
 
AWS Builders - Industry Edition: DevSecOps on AWS - 시작은 IAM 부터
AWS Builders - Industry Edition: DevSecOps on AWS - 시작은 IAM 부터AWS Builders - Industry Edition: DevSecOps on AWS - 시작은 IAM 부터
AWS Builders - Industry Edition: DevSecOps on AWS - 시작은 IAM 부터Amazon Web Services Korea
 
클라우드 여정을 성공적으로 수행하기 위한 AWS IAM 활용 전략::최원근:: AWS Summit Seoul 2018
클라우드 여정을 성공적으로 수행하기 위한 AWS IAM 활용 전략::최원근:: AWS Summit Seoul 2018 클라우드 여정을 성공적으로 수행하기 위한 AWS IAM 활용 전략::최원근:: AWS Summit Seoul 2018
클라우드 여정을 성공적으로 수행하기 위한 AWS IAM 활용 전략::최원근:: AWS Summit Seoul 2018 Amazon Web Services Korea
 
강의 3: AWS 보안:: AWSome Day Online Conference
강의 3:  AWS 보안:: AWSome Day Online Conference강의 3:  AWS 보안:: AWSome Day Online Conference
강의 3: AWS 보안:: AWSome Day Online ConferenceAmazon Web Services Korea
 
[AWSome Day온라인 컨퍼런스] 강의 4: 클라우드 애플리케이션 보호 - 장기웅, AWS 테크니컬 트레이너
[AWSome Day온라인 컨퍼런스] 강의 4: 클라우드 애플리케이션 보호 - 장기웅, AWS 테크니컬 트레이너[AWSome Day온라인 컨퍼런스] 강의 4: 클라우드 애플리케이션 보호 - 장기웅, AWS 테크니컬 트레이너
[AWSome Day온라인 컨퍼런스] 강의 4: 클라우드 애플리케이션 보호 - 장기웅, AWS 테크니컬 트레이너Amazon Web Services Korea
 
강의 3. AWS 보안 및 AWS Identity and Access Managment (IAM)::AWSome Day Online Con...
강의 3. AWS 보안 및 AWS Identity and Access Managment (IAM)::AWSome Day Online Con...강의 3. AWS 보안 및 AWS Identity and Access Managment (IAM)::AWSome Day Online Con...
강의 3. AWS 보안 및 AWS Identity and Access Managment (IAM)::AWSome Day Online Con...Amazon Web Services Korea
 
AWS를 활용한 다양한 DB 마이그레이션 및 게임 엔진 서버 구축 방법::맹상영 대표, 엔클라우드24::AWS Summit Seoul 2018
AWS를 활용한 다양한 DB 마이그레이션 및 게임 엔진 서버 구축 방법::맹상영 대표, 엔클라우드24::AWS Summit Seoul 2018AWS를 활용한 다양한 DB 마이그레이션 및 게임 엔진 서버 구축 방법::맹상영 대표, 엔클라우드24::AWS Summit Seoul 2018
AWS를 활용한 다양한 DB 마이그레이션 및 게임 엔진 서버 구축 방법::맹상영 대표, 엔클라우드24::AWS Summit Seoul 2018Amazon Web Services Korea
 
강의 1: AWS 클라우드 개념:: AWSome Day Online Conference
강의 1: AWS 클라우드 개념:: AWSome Day Online Conference강의 1: AWS 클라우드 개념:: AWSome Day Online Conference
강의 1: AWS 클라우드 개념:: AWSome Day Online ConferenceAmazon Web Services Korea
 
강의 1 - AWS 클라우드 개념 (조재구 테크니컬 트레이너, AWS) :: AWSome Day 온라인 컨퍼런스 2018
강의 1 - AWS 클라우드 개념 (조재구 테크니컬 트레이너, AWS) :: AWSome Day 온라인 컨퍼런스 2018강의 1 - AWS 클라우드 개념 (조재구 테크니컬 트레이너, AWS) :: AWSome Day 온라인 컨퍼런스 2018
강의 1 - AWS 클라우드 개념 (조재구 테크니컬 트레이너, AWS) :: AWSome Day 온라인 컨퍼런스 2018Amazon Web Services Korea
 
AWS Summit Seoul 2023 | 다중 계정 및 하이브리드 환경에서 안전한 IAM 체계 만들기
AWS Summit Seoul 2023 | 다중 계정 및 하이브리드 환경에서 안전한 IAM 체계 만들기AWS Summit Seoul 2023 | 다중 계정 및 하이브리드 환경에서 안전한 IAM 체계 만들기
AWS Summit Seoul 2023 | 다중 계정 및 하이브리드 환경에서 안전한 IAM 체계 만들기Amazon Web Services Korea
 
[Games on AWS 2019] AWS 사용자를 위한 만랩 달성 트랙 | AWS 최적화 사용을 위해 운영자가 아닌 개발자들이 해야 할 ...
[Games on AWS 2019] AWS 사용자를 위한 만랩 달성 트랙 | AWS 최적화 사용을 위해 운영자가 아닌 개발자들이 해야 할 ...[Games on AWS 2019] AWS 사용자를 위한 만랩 달성 트랙 | AWS 최적화 사용을 위해 운영자가 아닌 개발자들이 해야 할 ...
[Games on AWS 2019] AWS 사용자를 위한 만랩 달성 트랙 | AWS 최적화 사용을 위해 운영자가 아닌 개발자들이 해야 할 ...Amazon Web Services Korea
 
202003 AWS ISV/DNB IAM_webinar
202003 AWS ISV/DNB IAM_webinar202003 AWS ISV/DNB IAM_webinar
202003 AWS ISV/DNB IAM_webinarYijeong Cho
 
[AWS Techshift] 클라우드 기반의 Software Delivery 를 위한 기술 전략 - 김용우, AWS ISV 솔루션즈 아키텍트
[AWS Techshift] 클라우드 기반의 Software Delivery 를 위한 기술 전략 - 김용우, AWS ISV 솔루션즈 아키텍트[AWS Techshift] 클라우드 기반의 Software Delivery 를 위한 기술 전략 - 김용우, AWS ISV 솔루션즈 아키텍트
[AWS Techshift] 클라우드 기반의 Software Delivery 를 위한 기술 전략 - 김용우, AWS ISV 솔루션즈 아키텍트Amazon Web Services Korea
 
강의 4: AWS 아키텍처 설계:: AWSome Day Online Conference
강의 4: AWS 아키텍처 설계:: AWSome Day Online Conference강의 4: AWS 아키텍처 설계:: AWSome Day Online Conference
강의 4: AWS 아키텍처 설계:: AWSome Day Online ConferenceAmazon Web Services Korea
 
IDC 마이그레이션 여정기 (SundayToz) - 조성필 TD, Sunday Toz :: AWS Summit Seoul 2019
IDC 마이그레이션 여정기 (SundayToz) - 조성필 TD, Sunday Toz :: AWS Summit Seoul 2019IDC 마이그레이션 여정기 (SundayToz) - 조성필 TD, Sunday Toz :: AWS Summit Seoul 2019
IDC 마이그레이션 여정기 (SundayToz) - 조성필 TD, Sunday Toz :: AWS Summit Seoul 2019Amazon Web Services Korea
 
AWS KMS를 활용하여 안전한 AWS 환경을 구축하기 위한 전략::임기성::AWS Summit Seoul 2018
AWS KMS를 활용하여 안전한 AWS 환경을 구축하기 위한 전략::임기성::AWS Summit Seoul 2018 AWS KMS를 활용하여 안전한 AWS 환경을 구축하기 위한 전략::임기성::AWS Summit Seoul 2018
AWS KMS를 활용하여 안전한 AWS 환경을 구축하기 위한 전략::임기성::AWS Summit Seoul 2018 Amazon Web Services Korea
 
하이브리드 모바일 어플리케이션 개발을 위한 새로운 도구, AWS Amplify (강정희, AWS 솔루션즈 아키텍트) :: AWS DevDa...
하이브리드 모바일 어플리케이션 개발을 위한 새로운 도구, AWS Amplify (강정희, AWS 솔루션즈 아키텍트) :: AWS DevDa...하이브리드 모바일 어플리케이션 개발을 위한 새로운 도구, AWS Amplify (강정희, AWS 솔루션즈 아키텍트) :: AWS DevDa...
하이브리드 모바일 어플리케이션 개발을 위한 새로운 도구, AWS Amplify (강정희, AWS 솔루션즈 아키텍트) :: AWS DevDa...Amazon Web Services Korea
 
천만 사용자를 위한 AWS 클라우드 아키텍처 진화하기 - 김준형 솔루션즈 아키텍트, AWS :: AWS Summit Seoul 2019
천만 사용자를 위한 AWS 클라우드 아키텍처 진화하기 - 김준형 솔루션즈 아키텍트, AWS :: AWS Summit Seoul 2019천만 사용자를 위한 AWS 클라우드 아키텍처 진화하기 - 김준형 솔루션즈 아키텍트, AWS :: AWS Summit Seoul 2019
천만 사용자를 위한 AWS 클라우드 아키텍처 진화하기 - 김준형 솔루션즈 아키텍트, AWS :: AWS Summit Seoul 2019Amazon Web Services Korea
 
프론트엔드 개발자가 혼자 AWS 기반 웹애플리케이션 만들기::박찬민::AWS Summit Seoul 2018
프론트엔드 개발자가 혼자 AWS 기반 웹애플리케이션 만들기::박찬민::AWS Summit Seoul 2018프론트엔드 개발자가 혼자 AWS 기반 웹애플리케이션 만들기::박찬민::AWS Summit Seoul 2018
프론트엔드 개발자가 혼자 AWS 기반 웹애플리케이션 만들기::박찬민::AWS Summit Seoul 2018Amazon Web Services Korea
 
AWS Summit 2019 - GS네오텍
AWS Summit 2019 - GS네오텍AWS Summit 2019 - GS네오텍
AWS Summit 2019 - GS네오텍GS Neotek
 

Similar to IAM 정책을 잘 알아야 AWS 보안도 쉬워진다. 이것은 꼭 알고 가자! - 신은수 솔루션즈 아키텍트, AWS :: AWS Summit Seoul 2019 (20)

[Games on AWS 2019] AWS 입문자를 위한 초단기 레벨업 트랙 | AWS 레벨업 하기! : 보안 - 최원근 AWS 솔루션즈 ...
[Games on AWS 2019] AWS 입문자를 위한 초단기 레벨업 트랙 | AWS 레벨업 하기! : 보안 - 최원근 AWS 솔루션즈 ...[Games on AWS 2019] AWS 입문자를 위한 초단기 레벨업 트랙 | AWS 레벨업 하기! : 보안 - 최원근 AWS 솔루션즈 ...
[Games on AWS 2019] AWS 입문자를 위한 초단기 레벨업 트랙 | AWS 레벨업 하기! : 보안 - 최원근 AWS 솔루션즈 ...
 
AWS Builders - Industry Edition: DevSecOps on AWS - 시작은 IAM 부터
AWS Builders - Industry Edition: DevSecOps on AWS - 시작은 IAM 부터AWS Builders - Industry Edition: DevSecOps on AWS - 시작은 IAM 부터
AWS Builders - Industry Edition: DevSecOps on AWS - 시작은 IAM 부터
 
클라우드 여정을 성공적으로 수행하기 위한 AWS IAM 활용 전략::최원근:: AWS Summit Seoul 2018
클라우드 여정을 성공적으로 수행하기 위한 AWS IAM 활용 전략::최원근:: AWS Summit Seoul 2018 클라우드 여정을 성공적으로 수행하기 위한 AWS IAM 활용 전략::최원근:: AWS Summit Seoul 2018
클라우드 여정을 성공적으로 수행하기 위한 AWS IAM 활용 전략::최원근:: AWS Summit Seoul 2018
 
강의 3: AWS 보안:: AWSome Day Online Conference
강의 3:  AWS 보안:: AWSome Day Online Conference강의 3:  AWS 보안:: AWSome Day Online Conference
강의 3: AWS 보안:: AWSome Day Online Conference
 
[AWSome Day온라인 컨퍼런스] 강의 4: 클라우드 애플리케이션 보호 - 장기웅, AWS 테크니컬 트레이너
[AWSome Day온라인 컨퍼런스] 강의 4: 클라우드 애플리케이션 보호 - 장기웅, AWS 테크니컬 트레이너[AWSome Day온라인 컨퍼런스] 강의 4: 클라우드 애플리케이션 보호 - 장기웅, AWS 테크니컬 트레이너
[AWSome Day온라인 컨퍼런스] 강의 4: 클라우드 애플리케이션 보호 - 장기웅, AWS 테크니컬 트레이너
 
강의 3. AWS 보안 및 AWS Identity and Access Managment (IAM)::AWSome Day Online Con...
강의 3. AWS 보안 및 AWS Identity and Access Managment (IAM)::AWSome Day Online Con...강의 3. AWS 보안 및 AWS Identity and Access Managment (IAM)::AWSome Day Online Con...
강의 3. AWS 보안 및 AWS Identity and Access Managment (IAM)::AWSome Day Online Con...
 
AWS를 활용한 다양한 DB 마이그레이션 및 게임 엔진 서버 구축 방법::맹상영 대표, 엔클라우드24::AWS Summit Seoul 2018
AWS를 활용한 다양한 DB 마이그레이션 및 게임 엔진 서버 구축 방법::맹상영 대표, 엔클라우드24::AWS Summit Seoul 2018AWS를 활용한 다양한 DB 마이그레이션 및 게임 엔진 서버 구축 방법::맹상영 대표, 엔클라우드24::AWS Summit Seoul 2018
AWS를 활용한 다양한 DB 마이그레이션 및 게임 엔진 서버 구축 방법::맹상영 대표, 엔클라우드24::AWS Summit Seoul 2018
 
강의 1: AWS 클라우드 개념:: AWSome Day Online Conference
강의 1: AWS 클라우드 개념:: AWSome Day Online Conference강의 1: AWS 클라우드 개념:: AWSome Day Online Conference
강의 1: AWS 클라우드 개념:: AWSome Day Online Conference
 
강의 1 - AWS 클라우드 개념 (조재구 테크니컬 트레이너, AWS) :: AWSome Day 온라인 컨퍼런스 2018
강의 1 - AWS 클라우드 개념 (조재구 테크니컬 트레이너, AWS) :: AWSome Day 온라인 컨퍼런스 2018강의 1 - AWS 클라우드 개념 (조재구 테크니컬 트레이너, AWS) :: AWSome Day 온라인 컨퍼런스 2018
강의 1 - AWS 클라우드 개념 (조재구 테크니컬 트레이너, AWS) :: AWSome Day 온라인 컨퍼런스 2018
 
AWS Summit Seoul 2023 | 다중 계정 및 하이브리드 환경에서 안전한 IAM 체계 만들기
AWS Summit Seoul 2023 | 다중 계정 및 하이브리드 환경에서 안전한 IAM 체계 만들기AWS Summit Seoul 2023 | 다중 계정 및 하이브리드 환경에서 안전한 IAM 체계 만들기
AWS Summit Seoul 2023 | 다중 계정 및 하이브리드 환경에서 안전한 IAM 체계 만들기
 
[Games on AWS 2019] AWS 사용자를 위한 만랩 달성 트랙 | AWS 최적화 사용을 위해 운영자가 아닌 개발자들이 해야 할 ...
[Games on AWS 2019] AWS 사용자를 위한 만랩 달성 트랙 | AWS 최적화 사용을 위해 운영자가 아닌 개발자들이 해야 할 ...[Games on AWS 2019] AWS 사용자를 위한 만랩 달성 트랙 | AWS 최적화 사용을 위해 운영자가 아닌 개발자들이 해야 할 ...
[Games on AWS 2019] AWS 사용자를 위한 만랩 달성 트랙 | AWS 최적화 사용을 위해 운영자가 아닌 개발자들이 해야 할 ...
 
202003 AWS ISV/DNB IAM_webinar
202003 AWS ISV/DNB IAM_webinar202003 AWS ISV/DNB IAM_webinar
202003 AWS ISV/DNB IAM_webinar
 
[AWS Techshift] 클라우드 기반의 Software Delivery 를 위한 기술 전략 - 김용우, AWS ISV 솔루션즈 아키텍트
[AWS Techshift] 클라우드 기반의 Software Delivery 를 위한 기술 전략 - 김용우, AWS ISV 솔루션즈 아키텍트[AWS Techshift] 클라우드 기반의 Software Delivery 를 위한 기술 전략 - 김용우, AWS ISV 솔루션즈 아키텍트
[AWS Techshift] 클라우드 기반의 Software Delivery 를 위한 기술 전략 - 김용우, AWS ISV 솔루션즈 아키텍트
 
강의 4: AWS 아키텍처 설계:: AWSome Day Online Conference
강의 4: AWS 아키텍처 설계:: AWSome Day Online Conference강의 4: AWS 아키텍처 설계:: AWSome Day Online Conference
강의 4: AWS 아키텍처 설계:: AWSome Day Online Conference
 
IDC 마이그레이션 여정기 (SundayToz) - 조성필 TD, Sunday Toz :: AWS Summit Seoul 2019
IDC 마이그레이션 여정기 (SundayToz) - 조성필 TD, Sunday Toz :: AWS Summit Seoul 2019IDC 마이그레이션 여정기 (SundayToz) - 조성필 TD, Sunday Toz :: AWS Summit Seoul 2019
IDC 마이그레이션 여정기 (SundayToz) - 조성필 TD, Sunday Toz :: AWS Summit Seoul 2019
 
AWS KMS를 활용하여 안전한 AWS 환경을 구축하기 위한 전략::임기성::AWS Summit Seoul 2018
AWS KMS를 활용하여 안전한 AWS 환경을 구축하기 위한 전략::임기성::AWS Summit Seoul 2018 AWS KMS를 활용하여 안전한 AWS 환경을 구축하기 위한 전략::임기성::AWS Summit Seoul 2018
AWS KMS를 활용하여 안전한 AWS 환경을 구축하기 위한 전략::임기성::AWS Summit Seoul 2018
 
하이브리드 모바일 어플리케이션 개발을 위한 새로운 도구, AWS Amplify (강정희, AWS 솔루션즈 아키텍트) :: AWS DevDa...
하이브리드 모바일 어플리케이션 개발을 위한 새로운 도구, AWS Amplify (강정희, AWS 솔루션즈 아키텍트) :: AWS DevDa...하이브리드 모바일 어플리케이션 개발을 위한 새로운 도구, AWS Amplify (강정희, AWS 솔루션즈 아키텍트) :: AWS DevDa...
하이브리드 모바일 어플리케이션 개발을 위한 새로운 도구, AWS Amplify (강정희, AWS 솔루션즈 아키텍트) :: AWS DevDa...
 
천만 사용자를 위한 AWS 클라우드 아키텍처 진화하기 - 김준형 솔루션즈 아키텍트, AWS :: AWS Summit Seoul 2019
천만 사용자를 위한 AWS 클라우드 아키텍처 진화하기 - 김준형 솔루션즈 아키텍트, AWS :: AWS Summit Seoul 2019천만 사용자를 위한 AWS 클라우드 아키텍처 진화하기 - 김준형 솔루션즈 아키텍트, AWS :: AWS Summit Seoul 2019
천만 사용자를 위한 AWS 클라우드 아키텍처 진화하기 - 김준형 솔루션즈 아키텍트, AWS :: AWS Summit Seoul 2019
 
프론트엔드 개발자가 혼자 AWS 기반 웹애플리케이션 만들기::박찬민::AWS Summit Seoul 2018
프론트엔드 개발자가 혼자 AWS 기반 웹애플리케이션 만들기::박찬민::AWS Summit Seoul 2018프론트엔드 개발자가 혼자 AWS 기반 웹애플리케이션 만들기::박찬민::AWS Summit Seoul 2018
프론트엔드 개발자가 혼자 AWS 기반 웹애플리케이션 만들기::박찬민::AWS Summit Seoul 2018
 
AWS Summit 2019 - GS네오텍
AWS Summit 2019 - GS네오텍AWS Summit 2019 - GS네오텍
AWS Summit 2019 - GS네오텍
 

More from Amazon Web Services Korea

AWS Modern Infra with Storage Roadshow 2023 - Day 2
AWS Modern Infra with Storage Roadshow 2023 - Day 2AWS Modern Infra with Storage Roadshow 2023 - Day 2
AWS Modern Infra with Storage Roadshow 2023 - Day 2Amazon Web Services Korea
 
AWS Modern Infra with Storage Roadshow 2023 - Day 1
AWS Modern Infra with Storage Roadshow 2023 - Day 1AWS Modern Infra with Storage Roadshow 2023 - Day 1
AWS Modern Infra with Storage Roadshow 2023 - Day 1Amazon Web Services Korea
 
사례로 알아보는 Database Migration Service : 데이터베이스 및 데이터 이관, 통합, 분리, 분석의 도구 - 발표자: ...
사례로 알아보는 Database Migration Service : 데이터베이스 및 데이터 이관, 통합, 분리, 분석의 도구 - 발표자: ...사례로 알아보는 Database Migration Service : 데이터베이스 및 데이터 이관, 통합, 분리, 분석의 도구 - 발표자: ...
사례로 알아보는 Database Migration Service : 데이터베이스 및 데이터 이관, 통합, 분리, 분석의 도구 - 발표자: ...Amazon Web Services Korea
 
Amazon DocumentDB - Architecture 및 Best Practice (Level 200) - 발표자: 장동훈, Sr. ...
Amazon DocumentDB - Architecture 및 Best Practice (Level 200) - 발표자: 장동훈, Sr. ...Amazon DocumentDB - Architecture 및 Best Practice (Level 200) - 발표자: 장동훈, Sr. ...
Amazon DocumentDB - Architecture 및 Best Practice (Level 200) - 발표자: 장동훈, Sr. ...Amazon Web Services Korea
 
Amazon Elasticache - Fully managed, Redis & Memcached Compatible Service (Lev...
Amazon Elasticache - Fully managed, Redis & Memcached Compatible Service (Lev...Amazon Elasticache - Fully managed, Redis & Memcached Compatible Service (Lev...
Amazon Elasticache - Fully managed, Redis & Memcached Compatible Service (Lev...Amazon Web Services Korea
 
Internal Architecture of Amazon Aurora (Level 400) - 발표자: 정달영, APAC RDS Speci...
Internal Architecture of Amazon Aurora (Level 400) - 발표자: 정달영, APAC RDS Speci...Internal Architecture of Amazon Aurora (Level 400) - 발표자: 정달영, APAC RDS Speci...
Internal Architecture of Amazon Aurora (Level 400) - 발표자: 정달영, APAC RDS Speci...Amazon Web Services Korea
 
[Keynote] 슬기로운 AWS 데이터베이스 선택하기 - 발표자: 강민석, Korea Database SA Manager, WWSO, A...
[Keynote] 슬기로운 AWS 데이터베이스 선택하기 - 발표자: 강민석, Korea Database SA Manager, WWSO, A...[Keynote] 슬기로운 AWS 데이터베이스 선택하기 - 발표자: 강민석, Korea Database SA Manager, WWSO, A...
[Keynote] 슬기로운 AWS 데이터베이스 선택하기 - 발표자: 강민석, Korea Database SA Manager, WWSO, A...Amazon Web Services Korea
 
Demystify Streaming on AWS - 발표자: 이종혁, Sr Analytics Specialist, WWSO, AWS :::...
Demystify Streaming on AWS - 발표자: 이종혁, Sr Analytics Specialist, WWSO, AWS :::...Demystify Streaming on AWS - 발표자: 이종혁, Sr Analytics Specialist, WWSO, AWS :::...
Demystify Streaming on AWS - 발표자: 이종혁, Sr Analytics Specialist, WWSO, AWS :::...Amazon Web Services Korea
 
Amazon EMR - Enhancements on Cost/Performance, Serverless - 발표자: 김기영, Sr Anal...
Amazon EMR - Enhancements on Cost/Performance, Serverless - 발표자: 김기영, Sr Anal...Amazon EMR - Enhancements on Cost/Performance, Serverless - 발표자: 김기영, Sr Anal...
Amazon EMR - Enhancements on Cost/Performance, Serverless - 발표자: 김기영, Sr Anal...Amazon Web Services Korea
 
Amazon OpenSearch - Use Cases, Security/Observability, Serverless and Enhance...
Amazon OpenSearch - Use Cases, Security/Observability, Serverless and Enhance...Amazon OpenSearch - Use Cases, Security/Observability, Serverless and Enhance...
Amazon OpenSearch - Use Cases, Security/Observability, Serverless and Enhance...Amazon Web Services Korea
 
Enabling Agility with Data Governance - 발표자: 김성연, Analytics Specialist, WWSO,...
Enabling Agility with Data Governance - 발표자: 김성연, Analytics Specialist, WWSO,...Enabling Agility with Data Governance - 발표자: 김성연, Analytics Specialist, WWSO,...
Enabling Agility with Data Governance - 발표자: 김성연, Analytics Specialist, WWSO,...Amazon Web Services Korea
 
Amazon Redshift Deep Dive - Serverless, Streaming, ML, Auto Copy (New feature...
Amazon Redshift Deep Dive - Serverless, Streaming, ML, Auto Copy (New feature...Amazon Redshift Deep Dive - Serverless, Streaming, ML, Auto Copy (New feature...
Amazon Redshift Deep Dive - Serverless, Streaming, ML, Auto Copy (New feature...Amazon Web Services Korea
 
From Insights to Action, How to build and maintain a Data Driven Organization...
From Insights to Action, How to build and maintain a Data Driven Organization...From Insights to Action, How to build and maintain a Data Driven Organization...
From Insights to Action, How to build and maintain a Data Driven Organization...Amazon Web Services Korea
 
[Keynote] Accelerating Business Outcomes with AWS Data - 발표자: Saeed Gharadagh...
[Keynote] Accelerating Business Outcomes with AWS Data - 발표자: Saeed Gharadagh...[Keynote] Accelerating Business Outcomes with AWS Data - 발표자: Saeed Gharadagh...
[Keynote] Accelerating Business Outcomes with AWS Data - 발표자: Saeed Gharadagh...Amazon Web Services Korea
 
Amazon DynamoDB - Use Cases and Cost Optimization - 발표자: 이혁, DynamoDB Special...
Amazon DynamoDB - Use Cases and Cost Optimization - 발표자: 이혁, DynamoDB Special...Amazon DynamoDB - Use Cases and Cost Optimization - 발표자: 이혁, DynamoDB Special...
Amazon DynamoDB - Use Cases and Cost Optimization - 발표자: 이혁, DynamoDB Special...Amazon Web Services Korea
 
LG전자 - Amazon Aurora 및 RDS 블루/그린 배포를 이용한 데이터베이스 업그레이드 안정성 확보 - 발표자: 이은경 책임, L...
LG전자 - Amazon Aurora 및 RDS 블루/그린 배포를 이용한 데이터베이스 업그레이드 안정성 확보 - 발표자: 이은경 책임, L...LG전자 - Amazon Aurora 및 RDS 블루/그린 배포를 이용한 데이터베이스 업그레이드 안정성 확보 - 발표자: 이은경 책임, L...
LG전자 - Amazon Aurora 및 RDS 블루/그린 배포를 이용한 데이터베이스 업그레이드 안정성 확보 - 발표자: 이은경 책임, L...Amazon Web Services Korea
 
KB국민카드 - 클라우드 기반 분석 플랫폼 혁신 여정 - 발표자: 박창용 과장, 데이터전략본부, AI혁신부, KB카드│강병억, Soluti...
KB국민카드 - 클라우드 기반 분석 플랫폼 혁신 여정 - 발표자: 박창용 과장, 데이터전략본부, AI혁신부, KB카드│강병억, Soluti...KB국민카드 - 클라우드 기반 분석 플랫폼 혁신 여정 - 발표자: 박창용 과장, 데이터전략본부, AI혁신부, KB카드│강병억, Soluti...
KB국민카드 - 클라우드 기반 분석 플랫폼 혁신 여정 - 발표자: 박창용 과장, 데이터전략본부, AI혁신부, KB카드│강병억, Soluti...Amazon Web Services Korea
 
SK Telecom - 망관리 프로젝트 TANGO의 오픈소스 데이터베이스 전환 여정 - 발표자 : 박승전, Project Manager, ...
SK Telecom - 망관리 프로젝트 TANGO의 오픈소스 데이터베이스 전환 여정 - 발표자 : 박승전, Project Manager, ...SK Telecom - 망관리 프로젝트 TANGO의 오픈소스 데이터베이스 전환 여정 - 발표자 : 박승전, Project Manager, ...
SK Telecom - 망관리 프로젝트 TANGO의 오픈소스 데이터베이스 전환 여정 - 발표자 : 박승전, Project Manager, ...Amazon Web Services Korea
 
코리안리 - 데이터 분석 플랫폼 구축 여정, 그 시작과 과제 - 발표자: 김석기 그룹장, 데이터비즈니스센터, 메가존클라우드 ::: AWS ...
코리안리 - 데이터 분석 플랫폼 구축 여정, 그 시작과 과제 - 발표자: 김석기 그룹장, 데이터비즈니스센터, 메가존클라우드 ::: AWS ...코리안리 - 데이터 분석 플랫폼 구축 여정, 그 시작과 과제 - 발표자: 김석기 그룹장, 데이터비즈니스센터, 메가존클라우드 ::: AWS ...
코리안리 - 데이터 분석 플랫폼 구축 여정, 그 시작과 과제 - 발표자: 김석기 그룹장, 데이터비즈니스센터, 메가존클라우드 ::: AWS ...Amazon Web Services Korea
 
LG 이노텍 - Amazon Redshift Serverless를 활용한 데이터 분석 플랫폼 혁신 과정 - 발표자: 유재상 선임, LG이노...
LG 이노텍 - Amazon Redshift Serverless를 활용한 데이터 분석 플랫폼 혁신 과정 - 발표자: 유재상 선임, LG이노...LG 이노텍 - Amazon Redshift Serverless를 활용한 데이터 분석 플랫폼 혁신 과정 - 발표자: 유재상 선임, LG이노...
LG 이노텍 - Amazon Redshift Serverless를 활용한 데이터 분석 플랫폼 혁신 과정 - 발표자: 유재상 선임, LG이노...Amazon Web Services Korea
 

More from Amazon Web Services Korea (20)

AWS Modern Infra with Storage Roadshow 2023 - Day 2
AWS Modern Infra with Storage Roadshow 2023 - Day 2AWS Modern Infra with Storage Roadshow 2023 - Day 2
AWS Modern Infra with Storage Roadshow 2023 - Day 2
 
AWS Modern Infra with Storage Roadshow 2023 - Day 1
AWS Modern Infra with Storage Roadshow 2023 - Day 1AWS Modern Infra with Storage Roadshow 2023 - Day 1
AWS Modern Infra with Storage Roadshow 2023 - Day 1
 
사례로 알아보는 Database Migration Service : 데이터베이스 및 데이터 이관, 통합, 분리, 분석의 도구 - 발표자: ...
사례로 알아보는 Database Migration Service : 데이터베이스 및 데이터 이관, 통합, 분리, 분석의 도구 - 발표자: ...사례로 알아보는 Database Migration Service : 데이터베이스 및 데이터 이관, 통합, 분리, 분석의 도구 - 발표자: ...
사례로 알아보는 Database Migration Service : 데이터베이스 및 데이터 이관, 통합, 분리, 분석의 도구 - 발표자: ...
 
Amazon DocumentDB - Architecture 및 Best Practice (Level 200) - 발표자: 장동훈, Sr. ...
Amazon DocumentDB - Architecture 및 Best Practice (Level 200) - 발표자: 장동훈, Sr. ...Amazon DocumentDB - Architecture 및 Best Practice (Level 200) - 발표자: 장동훈, Sr. ...
Amazon DocumentDB - Architecture 및 Best Practice (Level 200) - 발표자: 장동훈, Sr. ...
 
Amazon Elasticache - Fully managed, Redis & Memcached Compatible Service (Lev...
Amazon Elasticache - Fully managed, Redis & Memcached Compatible Service (Lev...Amazon Elasticache - Fully managed, Redis & Memcached Compatible Service (Lev...
Amazon Elasticache - Fully managed, Redis & Memcached Compatible Service (Lev...
 
Internal Architecture of Amazon Aurora (Level 400) - 발표자: 정달영, APAC RDS Speci...
Internal Architecture of Amazon Aurora (Level 400) - 발표자: 정달영, APAC RDS Speci...Internal Architecture of Amazon Aurora (Level 400) - 발표자: 정달영, APAC RDS Speci...
Internal Architecture of Amazon Aurora (Level 400) - 발표자: 정달영, APAC RDS Speci...
 
[Keynote] 슬기로운 AWS 데이터베이스 선택하기 - 발표자: 강민석, Korea Database SA Manager, WWSO, A...
[Keynote] 슬기로운 AWS 데이터베이스 선택하기 - 발표자: 강민석, Korea Database SA Manager, WWSO, A...[Keynote] 슬기로운 AWS 데이터베이스 선택하기 - 발표자: 강민석, Korea Database SA Manager, WWSO, A...
[Keynote] 슬기로운 AWS 데이터베이스 선택하기 - 발표자: 강민석, Korea Database SA Manager, WWSO, A...
 
Demystify Streaming on AWS - 발표자: 이종혁, Sr Analytics Specialist, WWSO, AWS :::...
Demystify Streaming on AWS - 발표자: 이종혁, Sr Analytics Specialist, WWSO, AWS :::...Demystify Streaming on AWS - 발표자: 이종혁, Sr Analytics Specialist, WWSO, AWS :::...
Demystify Streaming on AWS - 발표자: 이종혁, Sr Analytics Specialist, WWSO, AWS :::...
 
Amazon EMR - Enhancements on Cost/Performance, Serverless - 발표자: 김기영, Sr Anal...
Amazon EMR - Enhancements on Cost/Performance, Serverless - 발표자: 김기영, Sr Anal...Amazon EMR - Enhancements on Cost/Performance, Serverless - 발표자: 김기영, Sr Anal...
Amazon EMR - Enhancements on Cost/Performance, Serverless - 발표자: 김기영, Sr Anal...
 
Amazon OpenSearch - Use Cases, Security/Observability, Serverless and Enhance...
Amazon OpenSearch - Use Cases, Security/Observability, Serverless and Enhance...Amazon OpenSearch - Use Cases, Security/Observability, Serverless and Enhance...
Amazon OpenSearch - Use Cases, Security/Observability, Serverless and Enhance...
 
Enabling Agility with Data Governance - 발표자: 김성연, Analytics Specialist, WWSO,...
Enabling Agility with Data Governance - 발표자: 김성연, Analytics Specialist, WWSO,...Enabling Agility with Data Governance - 발표자: 김성연, Analytics Specialist, WWSO,...
Enabling Agility with Data Governance - 발표자: 김성연, Analytics Specialist, WWSO,...
 
Amazon Redshift Deep Dive - Serverless, Streaming, ML, Auto Copy (New feature...
Amazon Redshift Deep Dive - Serverless, Streaming, ML, Auto Copy (New feature...Amazon Redshift Deep Dive - Serverless, Streaming, ML, Auto Copy (New feature...
Amazon Redshift Deep Dive - Serverless, Streaming, ML, Auto Copy (New feature...
 
From Insights to Action, How to build and maintain a Data Driven Organization...
From Insights to Action, How to build and maintain a Data Driven Organization...From Insights to Action, How to build and maintain a Data Driven Organization...
From Insights to Action, How to build and maintain a Data Driven Organization...
 
[Keynote] Accelerating Business Outcomes with AWS Data - 발표자: Saeed Gharadagh...
[Keynote] Accelerating Business Outcomes with AWS Data - 발표자: Saeed Gharadagh...[Keynote] Accelerating Business Outcomes with AWS Data - 발표자: Saeed Gharadagh...
[Keynote] Accelerating Business Outcomes with AWS Data - 발표자: Saeed Gharadagh...
 
Amazon DynamoDB - Use Cases and Cost Optimization - 발표자: 이혁, DynamoDB Special...
Amazon DynamoDB - Use Cases and Cost Optimization - 발표자: 이혁, DynamoDB Special...Amazon DynamoDB - Use Cases and Cost Optimization - 발표자: 이혁, DynamoDB Special...
Amazon DynamoDB - Use Cases and Cost Optimization - 발표자: 이혁, DynamoDB Special...
 
LG전자 - Amazon Aurora 및 RDS 블루/그린 배포를 이용한 데이터베이스 업그레이드 안정성 확보 - 발표자: 이은경 책임, L...
LG전자 - Amazon Aurora 및 RDS 블루/그린 배포를 이용한 데이터베이스 업그레이드 안정성 확보 - 발표자: 이은경 책임, L...LG전자 - Amazon Aurora 및 RDS 블루/그린 배포를 이용한 데이터베이스 업그레이드 안정성 확보 - 발표자: 이은경 책임, L...
LG전자 - Amazon Aurora 및 RDS 블루/그린 배포를 이용한 데이터베이스 업그레이드 안정성 확보 - 발표자: 이은경 책임, L...
 
KB국민카드 - 클라우드 기반 분석 플랫폼 혁신 여정 - 발표자: 박창용 과장, 데이터전략본부, AI혁신부, KB카드│강병억, Soluti...
KB국민카드 - 클라우드 기반 분석 플랫폼 혁신 여정 - 발표자: 박창용 과장, 데이터전략본부, AI혁신부, KB카드│강병억, Soluti...KB국민카드 - 클라우드 기반 분석 플랫폼 혁신 여정 - 발표자: 박창용 과장, 데이터전략본부, AI혁신부, KB카드│강병억, Soluti...
KB국민카드 - 클라우드 기반 분석 플랫폼 혁신 여정 - 발표자: 박창용 과장, 데이터전략본부, AI혁신부, KB카드│강병억, Soluti...
 
SK Telecom - 망관리 프로젝트 TANGO의 오픈소스 데이터베이스 전환 여정 - 발표자 : 박승전, Project Manager, ...
SK Telecom - 망관리 프로젝트 TANGO의 오픈소스 데이터베이스 전환 여정 - 발표자 : 박승전, Project Manager, ...SK Telecom - 망관리 프로젝트 TANGO의 오픈소스 데이터베이스 전환 여정 - 발표자 : 박승전, Project Manager, ...
SK Telecom - 망관리 프로젝트 TANGO의 오픈소스 데이터베이스 전환 여정 - 발표자 : 박승전, Project Manager, ...
 
코리안리 - 데이터 분석 플랫폼 구축 여정, 그 시작과 과제 - 발표자: 김석기 그룹장, 데이터비즈니스센터, 메가존클라우드 ::: AWS ...
코리안리 - 데이터 분석 플랫폼 구축 여정, 그 시작과 과제 - 발표자: 김석기 그룹장, 데이터비즈니스센터, 메가존클라우드 ::: AWS ...코리안리 - 데이터 분석 플랫폼 구축 여정, 그 시작과 과제 - 발표자: 김석기 그룹장, 데이터비즈니스센터, 메가존클라우드 ::: AWS ...
코리안리 - 데이터 분석 플랫폼 구축 여정, 그 시작과 과제 - 발표자: 김석기 그룹장, 데이터비즈니스센터, 메가존클라우드 ::: AWS ...
 
LG 이노텍 - Amazon Redshift Serverless를 활용한 데이터 분석 플랫폼 혁신 과정 - 발표자: 유재상 선임, LG이노...
LG 이노텍 - Amazon Redshift Serverless를 활용한 데이터 분석 플랫폼 혁신 과정 - 발표자: 유재상 선임, LG이노...LG 이노텍 - Amazon Redshift Serverless를 활용한 데이터 분석 플랫폼 혁신 과정 - 발표자: 유재상 선임, LG이노...
LG 이노텍 - Amazon Redshift Serverless를 활용한 데이터 분석 플랫폼 혁신 과정 - 발표자: 유재상 선임, LG이노...
 

IAM 정책을 잘 알아야 AWS 보안도 쉬워진다. 이것은 꼭 알고 가자! - 신은수 솔루션즈 아키텍트, AWS :: AWS Summit Seoul 2019

  • 1. © 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved. IAM 을 잘 알아야 보안도 쉬워진다. 이것은 꼭 알고 가자!신은수 Security Specialist Solutions Architect
  • 2. © 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 3. © 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved. • 구독한 모든 서비스에 대한 접근 • 과금 정보에 대한 접근 • 콘솔 및 API 사용 • 기술 지원 계약 변경 Account Owner ID (Root Account) AWS 서비스 사용 – 계정 생성 • 지정된 일부 서비스에 대한 접근 • 콘솔 및 API 사용 • 기술지원 요청 IAM 사용자, 역할, Federated 사용자 • 지정된 일부 서비스에 대한 접근 • 콘솔 및 API 사용 어플리케이션을 위한 임시 보안 자격 증명
  • 4. © 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved. AWS 서비스 사용 – Console 기반 작업 ! 쉽게 시작할 수 있다. " 반복작업에 적합하지 않다. " 시간이 오래 걸린다. 수작업 High level Low level
  • 5. © 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved. AWS 서비스 사용 – Script 기반 작업 Script 기반 수작업 ! 반복 작업에 적합하다. ! 원하는 항목에 대한 수정이 용이하다. " 리소스의 준비 상태 확인이 어렵다. " 문제 발생 시 복원이 어렵다. High level Low level
  • 6. © 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved. AWS 서비스 사용 – 프로비저닝 엔진 사용 AWS CloudFormation template (JSON/YAML) HashiCorp Configuration Language (HCL) 원하는 형상에 대한 정의 Declarative 방식 Script 기반 수작업 High level Low level ! 자동화 구현에 용이하다. ! 반복작업에 적합하다. ! 에러 발생 시 원복이 쉽다. " 최초 구현이 복잡하다.
  • 7. © 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved. Troposphere Python SparkleFormation Ruby GoFormation Go … AWS CloudFormation Template ! 코드 기반♥ ! 원하는 형상에 대한 정의 # 초기 코딩의 복잡성 DOM 모델 Declarative 방식 Script 기반 수작업 High level Low level AWS 서비스 사용 – DOM 모델 적용
  • 8. © 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved. AWS CloudFormation template AWS CDK application Stack(s) Construct Construct Component 화 DOM 기반 Declarative 기반 Script 기반 수작업 High level Low level 리소스 생성 AWS 서비스 사용 – CDK 사용 Developer preview
  • 9. © 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved. AWS Cloud 결국 중요한 건 - API VPC CloudWatch Cloud Formation CloudTrail Event ELB 사용자 요청 Command Line Interface SDK Management Console API API API
  • 10. © 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved. SigV4 를 사용한 API 호출 예제 POST /API-Request HTTP/1.1 Host: any-aws-services.us-east-1.amazonaws.com Content-Type: application/x-www-form-urlencoded Authorization: AWS4-HMAC-SHA256 Credential=AccessKeyIDEXAMPLE/20181126/us-east-1/sqs/aws4_request, SignedHeaders=content-type;host;x-amz-date, Signature=b97dfa904a5beffSecretKey를포함한16진수 61c982a1b6f458b799221646efd99d3219ec94cdf2500 X-Amz-Date: 20190418T123600Z def sign(key, msg): return hmac.new(key, msg.encode("utf-8"), hashlib.sha256).digest() def getSignatureKey(key, dateStamp, regionName, serviceName): kDate = sign(("AWS4" + key).encode("utf-8"), dateStamp) kRegion = sign(kDate, regionName) kService = sign(kRegion, serviceName) kSigning = sign(kService, "aws4_request") return kSigning
  • 11. © 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved. I A M
  • 12. © 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved. IAM Policy 란? Policy 는 AWS 서비스와 리소스에 대한 인가 기능을 제공합니다. Policy 를 정의할 때는 어떤 IAM Principal 이 어떤 Condition 에서 AWS 의 어떤 Resource 에 대해 어떤 Action 을 허용 혹은 차단할 것인지를 지정합니다. IAM 은 여러분이 정의한 Policy 를 기반으로 API 요청을 검사/평가 하게되며 최종적으로 허용 혹은 차단을 결정합니다.
  • 13. © 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved. IAM Policy 의 종류와 사용 목적 AWS Organizations Service Control Policies (SCPs) Specific AWS ser vices Resource-based Policies AWS Identity and Access Management (IAM) Permission Policies, Permission Boundaries AWS Security Token Ser vice (AWS STS) Session Policies VPC Endpoints Endpoint Policies 어카운트 내의 특정 Principal 에 대한 서비스 제어 역할 전환이나 Federation 시 권한을 제어 다수 계정 접속이나 서비스로부터의 접근을 제어 VPC Endpoint 에서 서비스로의 접근을 제어 IAM Principal(Users, Roles)에 대한 상세 권한 설정 및 사용 가능한 권한 경계 모든 Policy 는 동일한 문법을 사용(S3 ACL 예외)
  • 14. © 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved. IAM Policy 의 종류와 사용 목적
  • 15. © 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved. IAM Policy 의 구조 { "Statement":[{ "Effect":”Allow or Deny", "Principal":"principal", "Action":"action", "Resource":"arn", "Condition":{ "condition":{ "key":"value" } } } ] } Principal – 접근을 허용 혹은 차단하고자 하는 대상 "Principal":"AWS":"arn:aws:iam::123456789012:user/username" Action – 허용 혹은 차단하고자하는 접근 타입 "Action":"s3:GetObject" Resource – 요청의 목적지가 되는 서비스 "Resource":"arn:aws:sqs:us-west-2:123456789012:queue1" Condition – 명시된 조건 유효하다고 판단될 수 있는 조건 "StringEqualsIfExists": {"aws:RequestTag/project": [“Pickles“]} Effect – 명시된 정책에 대한 허용 혹은 차단
  • 16. © 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved. IAM 권한 할당 원리의 이해
  • 17. © 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved. Permission Policy 명시적 Deny API 요청 Permission Boundary 묵시적 Deny 명시적 Deny Allow 묵시적 Deny Allow 권한 할당 원칙 #1 – 명시적 Deny, 묵시적 Deny Deny Deny
  • 18. © 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved. 권한 할당 원칙 #2 – 명시적 허용 Permission Policy 명시적 Deny API 요청 Permission Boundary Allow Allow 요청 허용
  • 19. © 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved. 권한 할당 예제 Permission PolicyPermission Boundary API 요청: s3:GetObject / 버킷명: KoreaSummit { "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "logs:CreateLogGroup", "logs:CreateLogStream”, "logs:PutLogEvents” ], "Resource": "arn:aws:logs:*:*:*" } } { "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "logs:CreateLogGroup", "logs:CreateLogStream", "logs:PutLogEvents", "s3:*" ], "Resource": "*" } ] }
  • 20. © 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved. 적용된 권한 결과 Permission Policy 명시적 Deny API 요청: s3:getobject Permission Boundary Allow 요청 차단 묵시적 Deny
  • 21. © 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved. Permission PolicyPermission Boundary { "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "logs:CreateLogGroup", "logs:CreateLogStream”, "logs:PutLogEvents” ], "Resource": "arn:aws:logs:*:*:*" }, { "Effect": "Allow", "Action": ["s3:GetObject"], "Resource”:"arn:aws:s3:::KoreaSummit/*" } } { "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "logs:CreateLogGroup", "logs:CreateLogStream", "logs:PutLogEvents", "s3:*" ], "Resource": "*" } ] } 권한 할당 예제 API 요청: s3:GetObject / 버킷명: KoreaSummit
  • 22. © 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved. Permission Policy 명시적 Deny API 요청: s3:getobject Permission Boundary Allow 요청 허용 Allow 적용된 권한 결과
  • 23. © 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved. Permission PolicyPermission Boundary { "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "logs:CreateLogGroup", "logs:CreateLogStream”, "logs:PutLogEvents” ], "Resource": "arn:aws:logs:*:*:*" }, { "Effect": "Allow", "Action": ["s3:GetObject"], "Resource”:"arn:aws:s3:::KoreaSummit/*" } } { "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "logs:CreateLogGroup", "logs:CreateLogStream", "logs:PutLogEvents", ], "Resource": "*" } ] } API 요청: s3:GetObject / 버킷명: KoreaSummit 권한 할당 예제
  • 24. © 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved. Permission Policy 명시적 Deny API 요청: s3:getobject Permission Boundary 묵시적 Deny Allow 적용된 권한 결과 요청 차단
  • 25. © 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved. 명시적 Deny API 요청 Permission Boundary SCP Permission Policy Resource Policy 허용 권한 획득 조건 – 동일 계정
  • 26. © 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved. API 요청 허용 권한 획득 조건 – 다른 계정 Resource Policy 명시적 Deny Permission Boundary SCP Permission Policy 목적지 계정출발지 계정
  • 27. © 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved. 허용 권한 획득 조건 – 단일 계정 Permission Policy Resource Policy 최종 획득 권한 s3:*, ec2:* "Action":["ec2:*"] "Action":["s3:*"]
  • 28. © 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved. 허용 권한 획득 조건 – 교차 조건 Permission Boundary Permission Policy 최종 획득 권한
  • 29. © 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved. 허용 권한 획득 조건 Permission Boundary Permission Policy Service control policy Session Policy Resource Policy 최종 획득 권한
  • 30. © 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved. IAM 사용 TIP
  • 31. © 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved. IAM Role 의 활용 보안성 임시 보안 자격 증명의 사용 편리성 다수의 사용자나 어플리케이션이 사용할 수 있으므로 권한 관리가 편리 무료 별도의 과금 없음
  • 32. © 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved. IAM Role 활용 – IAM 사용자 권한 최소화 User: UserA IAM Policy: Allow: sts:AssumeRole Deny: *(AssumeRole 을 제외) Group: AccessOnly 할당된 정책 Role: EC2 Administrator Policy: EC2AdminPolicy IAM Policy: Allow: ec2:* Deny: *(AssumeRole 을 제외) Role 로 전환 적용된 정책 Action: EC2 Create Instance 실행 Logs: “userIdentity”: { “type”:“AssumedRole”, … “username”:“UserA” 로그 개별 사용자에게 할당되는 권한을 최소화 특정 역할에 할당되는 권한을 최적화
  • 33. © 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved. IAM Role – EC2 상의 어플리케이션 "Code" : "Success", "LastUpdated" : "2019-04-12T02:11:34Z", "Type" : "AWS-HMAC", "AccessKeyId" : "ASIA4M5UW2CW5EHAWFAN", "SecretAccessKey" : "v1dmbdKpv4lB94VhU8ku+c4e2hOexfhNf4nbod9+", “Token”:"AgoJb3JpZ2luX2VjENL///////////aYUOtiSb6VVpWdTsa8XUt4Ug9VEvXX6MmE7nk1bc9ipcnlLrCrVMvSVXHNsuzNPaZsR9LOIoOQ5gHh4bImVZrUqWQahmPmQcCGKBp1+XuCaoDJ r8QjM8rau2/fhT1JLplNJ3J5U9KS+iHQAA6jGgnW5QVZO+=", "Expiration" : "2019-04-12T08:28:32Z" EC2 S3 Bucket Token 기반 API 호출 어플리케이션 Role 이 할당된 EC2 인스턴스의 자격증명 정보 확인 – Session Timeout 에 유의 (IMDS) URL: http://169.254.169.254/latest/meta-data/iam/security-credentials/role-name
  • 34. © 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved. 멀티 계정 환경에서의 자원 공유 Prod1GWaMPLG.EoM 2EES 740 1111(((()))) ddD-roLG dGU1GWaMPLG.EoM 2EES 740 1()45,-./01( ddD-roLG p sh 보안 u격 xfo 이m{l 2@S 2P7 호출 72: TRGr0 3oD ddD-roLG k a한 sh 보안 u격 xf 획c 3oD p 2EEGRR 8Gy e 이m{l rx ddD-roLG n 2@S aEEoTnS dGU1GWaMPLG.EoM 1()45,-./01() p 72: URGr e id { "SSaSGMGnS"0 A { "5ffGES"0"2LLow"" "PrinEiPaL"0{"2@S"0"1()45,-./01("}" "2ESion"0"RSR02RRTMGRoLG" }B} 2EEoTnS 3 k t는 ddD-roLG k a한 v근o 허m{는 보안 wyo 3oD k[ }당 { "SSaSGMGnS"0 A { "5ffGES"0 "2LLow"" "2ESion"0 "RSR02RRTMGRoLG"" "RGRoTrEG"0 "arn0awR0iaM001111(((())))0roLG/ddD-roLG" }B} ddD-roLG k }당b ]한 { "SSaSGMGnS"0 A { "2ESion"0 A "dynaModD06GS7SGM"" "dynaModD03aSEI6GS7SGM"" "dynaModD04GREriDGTaDLG"" "dynaModD09iRSTaDLGR" B" "5ffGES"0 "2LLow"" "RGRoTrEG"0"arn0awR0dynaModD0TR-GaRS-10 1()45,-./01(0SaDLG/DooKR" }B} DooKR
  • 35. © 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved. { "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": "ec2:*", "Resource": "*", "Condition": { "StringEquals": { "ec2:ResourceTag/Project" : "Blue" } } } ] } Project=Blue VPC Project=Green TAG 를 활용한 접근 권한 제어
  • 36. © 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved. IAM 정책 생성 자동화 Product 계정 보안 계정 개발 팀 테스트 계정 Sandbox 1. 업로드된 IAM Policy 유효성 검증 2. 필수 ”명시적 Deny” 추가 3. 사용자 계정 내 최종 Policy 생성
  • 37. © 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved. Access Advisor 를 활용한 미사용 권한 탐지 "ServicesLastAccessed": [ { "LastAuthenticated": "2018-11-21T17:41:15Z", "LastAuthenticatedEntity": "arn:aws:iam::123456789012:role "ServiceName": "Amazon EC2", "ServiceNamespace": "ec2", "TotalAuthenticatedEntities": 1 },
  • 38. © 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved. 오픈 소스를 활용한 IAM 관리 Aardvark Repokid 미사용 서비스 삭제 Policy 사용 체크 90일 이상? 미사용 서비스? 커스텀 정책 Yes Yes Yes No No No 반복 체크 IAM 의 Access Advisor 정보를 조회 불필요한 권한 삭제
  • 39. © 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved. 끝내기 전에 잠깐!!
  • 40. © 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved. AWS WAF, Shield Advanced 서울 리전 지원!!