SlideShare una empresa de Scribd logo
1 de 28
AWS Security Best Practices & 
Design Patterns 
Bill Shinn 
Principal Security Solutions Architect
1. Network Security Best Practices 
2. Security Design Patterns 
3. Reducing the Use of Long-term, Privileged Credentials
1. Network Security Best Practices 
2. Security Design Patterns 
3. Reducing the Use of Long-term, Privileged Credentials
AWS lets customers choose where their content goes 
Region 
US-WEST (N. California) EU-WEST (Ireland) 
ASIA PAC 
(Tokyo) 
ASIA PAC 
(Singapore) 
US-WEST (Oregon) 
US-EAST (Virginia) 
SOUTH AMERICA (Sao 
Paulo) 
GOV CLOUD 
ASIA PAC 
(Sydney)
Take advantage of high availability in every Region 
Availability Zone 
US-WEST (N. California) EU-WEST (Ireland) 
ASIA PAC 
(Tokyo) 
ASIA PAC (Bejing) 
ASIA PAC 
(Singapore) 
US-WEST (Oregon) 
US-EAST (Virginia) 
SOUTH AMERICA (Sao 
Paulo) 
GOV CLOUD 
ASIA PAC 
(Sydney)
Use edge locations to serve content close to your customers 
Edge Locations 
Seattle 
Los Angeles (2) Jacksonville 
Dallas(2) 
St.Louis 
Miami 
Palo Alto 
London(2) 
Ashburn(2) 
Newark 
New York (2) 
Dublin 
Amsterdam 
Stockholm 
Frankfurt(2) 
Paris(2) 
Singapore(2) 
Tokyo 
Hong Kong 
Sao Paulo 
South Bend 
San Jose 
Osaka 
Milan 
Sydney 
Mumbai 
Chennai
Amazon EC2 Instance Isolation 
Customer 1 
Customer 2 Customer n … 
Physical Interfaces 
Hypervisor 
Virtual Interfaces 
… 
Firewall 
Customer 1 
Security Groups 
Customer 2 
Security Groups 
Customer n 
Security Groups
Web Tier 
Application Tier 
Database Tier 
Only specific ports 
open to the Internet 
Staff can limit app tier 
access to a 
bastion/management tier 
Sync with on-premises 
All other Internet ports 
blocked by default 
database 
Amazon EC2 
Security Group 
Firewall 
VPC Security Groups
VPC Network Security Controls
VPC Hybrid Architecture
Defense-in-Depth Architecture 
Corporate Data center 
Internet 
Existing 
Perimeter 
Internet 
Gateway 
AWS Direct 
Connect 
VPN Security Stack 
Customer 
GW
DB Tier App Tier Web Tier Protect Tier 
Route Table 
IAM 
NACL 
Internet 
Gateway 
VPN 
Internet 
Existing 
Perimeter 
Security 
Stack 
Corporate 
Data center 
VPN 
AWS 
DX CGW 
Network Protection
DB Tier App Tier Web Tier Protect Tier 
IAM 
Internet 
Gateway 
VPN 
Internet 
Existing 
Perimeter 
Security 
Stack 
Corporate 
Data center 
VPN 
AWS 
DX CGW 
Instance 
Auto Scaling 
Host Security 
Software 
SSH Keys 
Managed 
Encryption 
AMIs 
Bastion Host Bootstrapping 
CloudFront 
Load Distro 
Penetration 
Testing 
Instance Protection
DB Tier App Tier Web Tier Protect Tier 
IAM 
Internet 
Gateway 
VP 
N 
Internet 
Existing 
Perimeter 
Security 
Stack 
Corporate 
Data center 
VPN 
AWS 
DX CGW 
Database 
Oracle TDE 
MySQL, MS-SQL 
SSL 
Oracle NNE 
Redshfit 
Cluster 
Encryption 
RDS Auto 
Minor Patching 
SQL SSL 
Clients 
DynamoDB, 
SimpleDB SSL 
EMR Job Flow 
Roles 
Database Protection
DB App Web Protect 
In-line Threat Management: 
Bastion Host 
Protect Tier Bastion
DB App Web Protect 
In-line Threat Management: 
IPS/IDS NAT HA 
EIP 
1 
EIP 
2 
IPS NAT Layer 
EIP 
3 
EIP 
4 
App Layer 
IPS NAT Layer 
App Layer 
Availability Zone A Availability Zone B
DB Tier App Tier Web Tier Protect Tier 
IAM 
S3 
CloudFront 
Route Table 
NACL 
Internet 
Gateway 
Internet 
Existing 
Perimeter 
Security 
Stack 
VPN Corporate 
Data center 
VPN 
AWS 
DX CGW
End Users/Students/Researchers Internet 
VPC CIDR 10.10.0.0/16 
Gateway 
AZ A AZ B 
VPC Public Subnet 10.10.1.0/24 VPC Public Subnet 10.10.2.0/24 
Public ELB 
Autoscaling 
Web Tier 
Internal ELB 
Autoscaling 
Application Tier 
VPC Private Subnet 10.10.3.0/24 VPC Private Subnet 10.10.4.0/24 
RDS 
Master 
RDS 
Standby 
Snapshots 
VPC Private Subnet 10.10.5.0/24 VPC Private Subnet 10.10.6.0/24 
Web App Hosting 
in VPC 
Multi-AZ RDS 
Data Tier 
Existing 
Datacenter 
VPN Connection 
Virtual 
Private 
Gateway 
Customer 
Gateway 
Or 
Direct Connect 
Network 
Partner 
Location 
Administrators & 
Campus Users 
Static/ 
Streaming 
Content 
CloudFront 
S3
Internet 
Route 53 Gateway 
AZ A AZ B 
SG: ELBSecurityGroup 
VPC Public Subnet 10.40.1.0/24 Public ELB in 
VPC Public Subnet 10.40.2.0/24 
TCP mode w/ Proxy Protocol 
SG: 
HAProxySecurityGroup 
HAProxy tier – if needed, session state 
managed via client-side cookie inserted by 
HAProxy. HAProxy nodes route to web server 
where user session exists, regardless of 
which HAProxy instance ELB directs client to. 
SSL termination/re-encryption. Keys stored in 
S3, retrieved by CloudFormation at system 
launch using entitlements of IAM role for EC2. 
Support for Proxy Protocol, x-forwarded-for, 
and JSESSION cookie (appsession) for sticky 
sessions via hashtable if needed. 
HAProxy/ 
Public 
SSL 
HAProxy/P 
ublic SSL 
HAProxy/P 
ublic SSL 
HAProxy/P 
ublic SSL 
VPC Private Subnet 10.40.3.0/24 VPC Private Subnet 10.40.4.0/24 
Tomcat/P 
rivate 
SSL 
Tomcat/P 
rivate 
SSL 
Tomcat/P 
rivate 
SSL 
Tomcat/P 
rivate 
SSL 
SG: WebSecurityGroup 
HAProxy tier performs backend encryption 
between HAProxy nodes and Tomcat nodes. 
Keys stored in S3, retrieved by 
CloudFormation at system launch using 
entitlements of IAM role for EC2. 
VPC Private Subnet 10.40.5.0/24 VPC Private Subnet 10.40.6.0/24
Internet 
Route 53 Gateway 
AZ A AZ B 
SG: HAProxySecurityGroup 
HAProxy tier – if needed, session state 
managed via client-side cookie inserted by 
HAProxy. HAProxy nodes route to web server 
where user session exists, regardless of 
which HAProxy instance ELB directs client to. 
SSL termination/re-encryption. Keys stored in 
S3, retrieved by CloudFormation at system 
launch using entitlements of IAM role for EC2. 
Support for Proxy Protocol, x-forwarded-for, 
and JSESSION cookie (appsession) for sticky 
sessions via hashtable if needed. 
HAProxy/ 
Public 
SSL 
HAProxy/P 
ublic SSL 
HAProxy/P 
ublic SSL 
HAProxy/P 
ublic SSL 
VPC Public Subnet 10.40.3.0/24 VPC Public Subnet 10.40.4.0/24 
Tomcat/P 
rivate 
SSL 
Tomcat/P 
rivate 
SSL 
Tomcat/P 
rivate 
SSL 
Tomcat/P 
rivate 
SSL 
SG: WebSecurityGroup 
HAProxy tier performs backend encryption 
between HAProxy nodes and Tomcat nodes. 
Keys stored in S3, retrieved by 
CloudFormation at system launch using 
entitlements of IAM role for EC2. 
VPC Private Subnet 10.40.5.0/24 VPC Private Subnet 10.40.6.0/24
VPC Best Practices 
Leverage existing governance 
• Address space allocation 
• Internet access policies 
• Management of routing protocol and route advertisements 
IAM policies for VPC actions 
• Separation of duties 
• Authentication & authorization enforcement 
Network Filtering 
• Use security groups for stateful network packet filtering 
• Use stateless network ACLs for separation of duties and coarse-grained 
management 
Connecting VPCs 
• Hub and Spoke using Direct Connect 
• VPN Hub and Spoke 
• VPC Peering
EC2 Resource Permissions 
Assign permissions to EC2 Resources 
Instance 
Snapshot 
Volume 
Combine with existing permissions and policies based on EC2 Actions 
to create extremely fine-grained polices for managing AWS resources. 
Leverage Tagging and attribute-driven conditions 
Tags such as “Production” or “AppName” 
Overlay organizational structure such as cost centers or departments 
Require dedicated tenancy as a condition 
Additional EC2 resources and conditions added through 2014.
1. Network Security Best Practices 
2. Security Design Patterns 
3. Reducing the Use of Long-term, Privileged Credentials
Agile Network Architecture 
Update and change private network 
addressing, subnets, route tables and 
administrative control of network functions 
to move systems and applications in 
response to vulnerabilities, regulatory 
changes, project partnerships, etc. 
Security 
Groups 
Use named security groups to logically 
control access between systems of like 
trust or based on data classification. 
Security attributes of system move with 
the system independent of network 
location. Relocate systems via API call to 
address changing threat environment. 
Amazon VPC 
+
Non-Persistent Platforms 
Auto-scaling groups will ensure that 
capacity is predictable while you rotate 
out portions of the environment. You can 
also swap out the base AMI in an auto-scaling 
launch configuration with a freshly 
patched one, then progressively kill off 
stale instances. 
Changing the paradigm of what a target 
or attack surface looks like. Automation 
around Amazon Machine Image creation 
and bootstrapping with tools like AWS 
OpsWorks, Amazon Elastic Beanstalk, 
Chef or Puppet means you can constantly 
lay down a moving target. 
Amazon Auto-scaling 
Groups 
AWS Elastic 
Compute Cloud 
+
Standardized Environments & Change Detection 
AWS SDKs 
Interrogate and describe entire 
environment with Java, Python, .NET, 
Ruby, PHP or other SDKs. Detect change 
in standardized environment 
programmatically and integrate with 
existing asset and SIEM workflows. 
Use CloudFormation to create an 
environment that mirrors your security 
standards. One API call results in 
hardened AMIs with base security 
controls installed, predictable firewall and 
network configuration, and appropriately 
defined access and roles. 
+ 
AWS 
CloudFormation
Instance Identity 
Security token service generates unique 
credentials and constantly rotates an 
additional token. 
Identity and Access Management roles for 
EC2 instances provide entitlements to the 
instance itself. Credentials are presented 
through a RESTful meta-data service 
accessible only on the local host. 
Credentials can be leveraged by apps 
that need to call AWS APIs, retrieve data 
from S3, etc. Native integration with SDKs 
and CLI tools. 
Security Token Service 
+ 
Identity 
Management
Consolidated API Logging 
Log archival solution for life-cycle 
management. 
CloudTrail provides increased visibility 
into your user activity by recording AWS 
API calls. Integration with Amazon SNS 
and ecosystem partners facilitates 
analytics. 
Provides logging up and down the stack 
in one place (storage, networking, 
instances, identity). 
Amazon S3 + Glacier 
+ 
AWS CloudTrail

Más contenido relacionado

La actualidad más candente

Amazon CloudWatch Tutorial | AWS Certification | Cloud Monitoring Tools | AWS...
Amazon CloudWatch Tutorial | AWS Certification | Cloud Monitoring Tools | AWS...Amazon CloudWatch Tutorial | AWS Certification | Cloud Monitoring Tools | AWS...
Amazon CloudWatch Tutorial | AWS Certification | Cloud Monitoring Tools | AWS...Edureka!
 
AWS Control Tower
AWS Control TowerAWS Control Tower
AWS Control TowerCloudHesive
 
Using AWS Control Tower to govern multi-account AWS environments at scale - G...
Using AWS Control Tower to govern multi-account AWS environments at scale - G...Using AWS Control Tower to govern multi-account AWS environments at scale - G...
Using AWS Control Tower to govern multi-account AWS environments at scale - G...Amazon Web Services
 
AWS Summit Seoul 2023 | Confluent와 함께하는 실시간 데이터와 클라우드 여정
AWS Summit Seoul 2023 | Confluent와 함께하는 실시간 데이터와 클라우드 여정AWS Summit Seoul 2023 | Confluent와 함께하는 실시간 데이터와 클라우드 여정
AWS Summit Seoul 2023 | Confluent와 함께하는 실시간 데이터와 클라우드 여정Amazon Web Services Korea
 
AWS Landing Zone Deep Dive (ENT350-R2) - AWS re:Invent 2018
AWS Landing Zone Deep Dive (ENT350-R2) - AWS re:Invent 2018AWS Landing Zone Deep Dive (ENT350-R2) - AWS re:Invent 2018
AWS Landing Zone Deep Dive (ENT350-R2) - AWS re:Invent 2018Amazon Web Services
 
AWS IAM and security
AWS IAM and securityAWS IAM and security
AWS IAM and securityErik Paulsson
 
AWS Security Best Practices (March 2017)
AWS Security Best Practices (March 2017)AWS Security Best Practices (March 2017)
AWS Security Best Practices (March 2017)Julien SIMON
 
AWS Security Week: Security, Identity, & Compliance
AWS Security Week: Security, Identity, & ComplianceAWS Security Week: Security, Identity, & Compliance
AWS Security Week: Security, Identity, & ComplianceAmazon Web Services
 
AWS inspector_이해
AWS inspector_이해AWS inspector_이해
AWS inspector_이해ASome Cloud
 
AWS Well Architected Framework - Walk Through
AWS Well Architected Framework - Walk ThroughAWS Well Architected Framework - Walk Through
AWS Well Architected Framework - Walk ThroughKaushik Mohanraj
 
AWS Global Infrastructure Foundations
AWS Global Infrastructure Foundations AWS Global Infrastructure Foundations
AWS Global Infrastructure Foundations Amazon Web Services
 
Introduction to Amazon Web Services (AWS)
Introduction to Amazon Web Services (AWS)Introduction to Amazon Web Services (AWS)
Introduction to Amazon Web Services (AWS)Garvit Anand
 
Introduction to AWS Organizations
Introduction to AWS OrganizationsIntroduction to AWS Organizations
Introduction to AWS OrganizationsAmazon Web Services
 
An Introduction to the AWS Well Architected Framework - Webinar
An Introduction to the AWS Well Architected Framework - WebinarAn Introduction to the AWS Well Architected Framework - Webinar
An Introduction to the AWS Well Architected Framework - WebinarAmazon Web Services
 
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
 
Migrating Your AD to the Cloud with AWS Directory Services for Microsoft Acti...
Migrating Your AD to the Cloud with AWS Directory Services for Microsoft Acti...Migrating Your AD to the Cloud with AWS Directory Services for Microsoft Acti...
Migrating Your AD to the Cloud with AWS Directory Services for Microsoft Acti...Amazon Web Services
 

La actualidad más candente (20)

Amazon CloudWatch Tutorial | AWS Certification | Cloud Monitoring Tools | AWS...
Amazon CloudWatch Tutorial | AWS Certification | Cloud Monitoring Tools | AWS...Amazon CloudWatch Tutorial | AWS Certification | Cloud Monitoring Tools | AWS...
Amazon CloudWatch Tutorial | AWS Certification | Cloud Monitoring Tools | AWS...
 
AWS Control Tower
AWS Control TowerAWS Control Tower
AWS Control Tower
 
Using AWS Control Tower to govern multi-account AWS environments at scale - G...
Using AWS Control Tower to govern multi-account AWS environments at scale - G...Using AWS Control Tower to govern multi-account AWS environments at scale - G...
Using AWS Control Tower to govern multi-account AWS environments at scale - G...
 
AWS Summit Seoul 2023 | Confluent와 함께하는 실시간 데이터와 클라우드 여정
AWS Summit Seoul 2023 | Confluent와 함께하는 실시간 데이터와 클라우드 여정AWS Summit Seoul 2023 | Confluent와 함께하는 실시간 데이터와 클라우드 여정
AWS Summit Seoul 2023 | Confluent와 함께하는 실시간 데이터와 클라우드 여정
 
AWS Landing Zone Deep Dive (ENT350-R2) - AWS re:Invent 2018
AWS Landing Zone Deep Dive (ENT350-R2) - AWS re:Invent 2018AWS Landing Zone Deep Dive (ENT350-R2) - AWS re:Invent 2018
AWS Landing Zone Deep Dive (ENT350-R2) - AWS re:Invent 2018
 
AWS IAM and security
AWS IAM and securityAWS IAM and security
AWS IAM and security
 
Deep dive into AWS IAM
Deep dive into AWS IAMDeep dive into AWS IAM
Deep dive into AWS IAM
 
AWS Security Best Practices (March 2017)
AWS Security Best Practices (March 2017)AWS Security Best Practices (March 2017)
AWS Security Best Practices (March 2017)
 
AWS Security Week: Security, Identity, & Compliance
AWS Security Week: Security, Identity, & ComplianceAWS Security Week: Security, Identity, & Compliance
AWS Security Week: Security, Identity, & Compliance
 
AWS inspector_이해
AWS inspector_이해AWS inspector_이해
AWS inspector_이해
 
AWS Well Architected Framework - Walk Through
AWS Well Architected Framework - Walk ThroughAWS Well Architected Framework - Walk Through
AWS Well Architected Framework - Walk Through
 
AWS Global Infrastructure Foundations
AWS Global Infrastructure Foundations AWS Global Infrastructure Foundations
AWS Global Infrastructure Foundations
 
Introduction to Amazon Web Services (AWS)
Introduction to Amazon Web Services (AWS)Introduction to Amazon Web Services (AWS)
Introduction to Amazon Web Services (AWS)
 
Introduction to AWS Organizations
Introduction to AWS OrganizationsIntroduction to AWS Organizations
Introduction to AWS Organizations
 
Security Architectures on AWS
Security Architectures on AWSSecurity Architectures on AWS
Security Architectures on AWS
 
An Introduction to the AWS Well Architected Framework - Webinar
An Introduction to the AWS Well Architected Framework - WebinarAn Introduction to the AWS Well Architected Framework - Webinar
An Introduction to the AWS Well Architected Framework - Webinar
 
IAM Introduction
IAM IntroductionIAM Introduction
IAM Introduction
 
AWS Security Best Practices
AWS Security Best PracticesAWS Security Best Practices
AWS Security Best Practices
 
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
 
Migrating Your AD to the Cloud with AWS Directory Services for Microsoft Acti...
Migrating Your AD to the Cloud with AWS Directory Services for Microsoft Acti...Migrating Your AD to the Cloud with AWS Directory Services for Microsoft Acti...
Migrating Your AD to the Cloud with AWS Directory Services for Microsoft Acti...
 

Similar a AWS Security Best Practices and Design Patterns

(HLS401) Architecting for HIPAA Compliance on AWS | AWS re:Invent 2014
(HLS401) Architecting for HIPAA Compliance on AWS | AWS re:Invent 2014(HLS401) Architecting for HIPAA Compliance on AWS | AWS re:Invent 2014
(HLS401) Architecting for HIPAA Compliance on AWS | AWS re:Invent 2014Amazon Web Services
 
Deploy a DoD Secure Cloud Computing Architecture Environment in AWS | AWS Pub...
Deploy a DoD Secure Cloud Computing Architecture Environment in AWS | AWS Pub...Deploy a DoD Secure Cloud Computing Architecture Environment in AWS | AWS Pub...
Deploy a DoD Secure Cloud Computing Architecture Environment in AWS | AWS Pub...Amazon Web Services
 
Forge - DevCon 2016: Developing & Deploying Secure, Scalable Applications on ...
Forge - DevCon 2016: Developing & Deploying Secure, Scalable Applications on ...Forge - DevCon 2016: Developing & Deploying Secure, Scalable Applications on ...
Forge - DevCon 2016: Developing & Deploying Secure, Scalable Applications on ...Autodesk
 
Network Security and Access Control within AWS
Network Security and Access Control within AWS Network Security and Access Control within AWS
Network Security and Access Control within AWS Amazon Web Services
 
Hybrid Infrastructure Integration
Hybrid Infrastructure IntegrationHybrid Infrastructure Integration
Hybrid Infrastructure IntegrationAmazon Web Services
 
Hybrid Infrastructure Integration
Hybrid Infrastructure IntegrationHybrid Infrastructure Integration
Hybrid Infrastructure IntegrationAmazon Web Services
 
Hybrid Infrastructure Integration
Hybrid Infrastructure IntegrationHybrid Infrastructure Integration
Hybrid Infrastructure IntegrationAmazon Web Services
 
Deploy a DoD Secure Cloud Computing Architecture Environment in AWS
Deploy a DoD Secure Cloud Computing Architecture Environment in AWSDeploy a DoD Secure Cloud Computing Architecture Environment in AWS
Deploy a DoD Secure Cloud Computing Architecture Environment in AWSAmazon Web Services
 
Getting Started with AWS Security
Getting Started with AWS SecurityGetting Started with AWS Security
Getting Started with AWS SecurityAmazon Web Services
 
Deep Dive - Hybrid Architectures
Deep Dive - Hybrid ArchitecturesDeep Dive - Hybrid Architectures
Deep Dive - Hybrid ArchitecturesAmazon Web Services
 
Best Practices for Deploying Microsoft Workloads on AWS
Best Practices for Deploying Microsoft Workloads on AWSBest Practices for Deploying Microsoft Workloads on AWS
Best Practices for Deploying Microsoft Workloads on AWSZlatan Dzinic
 
AWS re:Invent 2016: Managing and Supporting the Windows Platform on AWS (GPSS...
AWS re:Invent 2016: Managing and Supporting the Windows Platform on AWS (GPSS...AWS re:Invent 2016: Managing and Supporting the Windows Platform on AWS (GPSS...
AWS re:Invent 2016: Managing and Supporting the Windows Platform on AWS (GPSS...Amazon Web Services
 
Secure your critical workload on AWS
Secure your critical workload on AWSSecure your critical workload on AWS
Secure your critical workload on AWSAmazon Web Services
 
AWS Public Sector Symposium 2014 Canberra | Security as an Enabler: Improving...
AWS Public Sector Symposium 2014 Canberra | Security as an Enabler: Improving...AWS Public Sector Symposium 2014 Canberra | Security as an Enabler: Improving...
AWS Public Sector Symposium 2014 Canberra | Security as an Enabler: Improving...Amazon Web Services
 
Best Practices for Deploying Microsoft Workloads on AWS
Best Practices for Deploying Microsoft Workloads on AWSBest Practices for Deploying Microsoft Workloads on AWS
Best Practices for Deploying Microsoft Workloads on AWSAmazon Web Services
 
Herramientas Cloud Ninja AWS "From Zero to Hero"
Herramientas Cloud Ninja AWS "From Zero to Hero"Herramientas Cloud Ninja AWS "From Zero to Hero"
Herramientas Cloud Ninja AWS "From Zero to Hero"Amazon Web Services LATAM
 
Herramientas Cloud Ninja AWS "From Zero to Hero"
Herramientas Cloud Ninja AWS "From Zero to Hero"Herramientas Cloud Ninja AWS "From Zero to Hero"
Herramientas Cloud Ninja AWS "From Zero to Hero"Amazon Web Services LATAM
 

Similar a AWS Security Best Practices and Design Patterns (20)

Staying Secure in the Cloud
Staying Secure in the CloudStaying Secure in the Cloud
Staying Secure in the Cloud
 
(HLS401) Architecting for HIPAA Compliance on AWS | AWS re:Invent 2014
(HLS401) Architecting for HIPAA Compliance on AWS | AWS re:Invent 2014(HLS401) Architecting for HIPAA Compliance on AWS | AWS re:Invent 2014
(HLS401) Architecting for HIPAA Compliance on AWS | AWS re:Invent 2014
 
Deploy a DoD Secure Cloud Computing Architecture Environment in AWS | AWS Pub...
Deploy a DoD Secure Cloud Computing Architecture Environment in AWS | AWS Pub...Deploy a DoD Secure Cloud Computing Architecture Environment in AWS | AWS Pub...
Deploy a DoD Secure Cloud Computing Architecture Environment in AWS | AWS Pub...
 
Forge - DevCon 2016: Developing & Deploying Secure, Scalable Applications on ...
Forge - DevCon 2016: Developing & Deploying Secure, Scalable Applications on ...Forge - DevCon 2016: Developing & Deploying Secure, Scalable Applications on ...
Forge - DevCon 2016: Developing & Deploying Secure, Scalable Applications on ...
 
Network Security and Access Control within AWS
Network Security and Access Control within AWS Network Security and Access Control within AWS
Network Security and Access Control within AWS
 
Hybrid Infrastructure Integration
Hybrid Infrastructure IntegrationHybrid Infrastructure Integration
Hybrid Infrastructure Integration
 
Hybrid Infrastructure Integration
Hybrid Infrastructure IntegrationHybrid Infrastructure Integration
Hybrid Infrastructure Integration
 
Hybrid Infrastructure Integration
Hybrid Infrastructure IntegrationHybrid Infrastructure Integration
Hybrid Infrastructure Integration
 
Deploy a DoD Secure Cloud Computing Architecture Environment in AWS
Deploy a DoD Secure Cloud Computing Architecture Environment in AWSDeploy a DoD Secure Cloud Computing Architecture Environment in AWS
Deploy a DoD Secure Cloud Computing Architecture Environment in AWS
 
Getting Started with AWS Security
Getting Started with AWS SecurityGetting Started with AWS Security
Getting Started with AWS Security
 
Deep Dive - Hybrid Architectures
Deep Dive - Hybrid ArchitecturesDeep Dive - Hybrid Architectures
Deep Dive - Hybrid Architectures
 
Best Practices for Deploying Microsoft Workloads on AWS
Best Practices for Deploying Microsoft Workloads on AWSBest Practices for Deploying Microsoft Workloads on AWS
Best Practices for Deploying Microsoft Workloads on AWS
 
Security on AWS
Security on AWSSecurity on AWS
Security on AWS
 
AWS 101 Event - 16 July 2013
AWS 101 Event - 16 July 2013AWS 101 Event - 16 July 2013
AWS 101 Event - 16 July 2013
 
AWS re:Invent 2016: Managing and Supporting the Windows Platform on AWS (GPSS...
AWS re:Invent 2016: Managing and Supporting the Windows Platform on AWS (GPSS...AWS re:Invent 2016: Managing and Supporting the Windows Platform on AWS (GPSS...
AWS re:Invent 2016: Managing and Supporting the Windows Platform on AWS (GPSS...
 
Secure your critical workload on AWS
Secure your critical workload on AWSSecure your critical workload on AWS
Secure your critical workload on AWS
 
AWS Public Sector Symposium 2014 Canberra | Security as an Enabler: Improving...
AWS Public Sector Symposium 2014 Canberra | Security as an Enabler: Improving...AWS Public Sector Symposium 2014 Canberra | Security as an Enabler: Improving...
AWS Public Sector Symposium 2014 Canberra | Security as an Enabler: Improving...
 
Best Practices for Deploying Microsoft Workloads on AWS
Best Practices for Deploying Microsoft Workloads on AWSBest Practices for Deploying Microsoft Workloads on AWS
Best Practices for Deploying Microsoft Workloads on AWS
 
Herramientas Cloud Ninja AWS "From Zero to Hero"
Herramientas Cloud Ninja AWS "From Zero to Hero"Herramientas Cloud Ninja AWS "From Zero to Hero"
Herramientas Cloud Ninja AWS "From Zero to Hero"
 
Herramientas Cloud Ninja AWS "From Zero to Hero"
Herramientas Cloud Ninja AWS "From Zero to Hero"Herramientas Cloud Ninja AWS "From Zero to Hero"
Herramientas Cloud Ninja AWS "From Zero to Hero"
 

Más de Amazon Web Services

Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...Amazon Web Services
 
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...Amazon Web Services
 
Esegui pod serverless con Amazon EKS e AWS Fargate
Esegui pod serverless con Amazon EKS e AWS FargateEsegui pod serverless con Amazon EKS e AWS Fargate
Esegui pod serverless con Amazon EKS e AWS FargateAmazon Web Services
 
Costruire Applicazioni Moderne con AWS
Costruire Applicazioni Moderne con AWSCostruire Applicazioni Moderne con AWS
Costruire Applicazioni Moderne con AWSAmazon Web Services
 
Come spendere fino al 90% in meno con i container e le istanze spot
Come spendere fino al 90% in meno con i container e le istanze spot Come spendere fino al 90% in meno con i container e le istanze spot
Come spendere fino al 90% in meno con i container e le istanze spot Amazon Web Services
 
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...Amazon Web Services
 
OpsWorks Configuration Management: automatizza la gestione e i deployment del...
OpsWorks Configuration Management: automatizza la gestione e i deployment del...OpsWorks Configuration Management: automatizza la gestione e i deployment del...
OpsWorks Configuration Management: automatizza la gestione e i deployment del...Amazon Web Services
 
Microsoft Active Directory su AWS per supportare i tuoi Windows Workloads
Microsoft Active Directory su AWS per supportare i tuoi Windows WorkloadsMicrosoft Active Directory su AWS per supportare i tuoi Windows Workloads
Microsoft Active Directory su AWS per supportare i tuoi Windows WorkloadsAmazon Web Services
 
Database Oracle e VMware Cloud on AWS i miti da sfatare
Database Oracle e VMware Cloud on AWS i miti da sfatareDatabase Oracle e VMware Cloud on AWS i miti da sfatare
Database Oracle e VMware Cloud on AWS i miti da sfatareAmazon Web Services
 
Crea la tua prima serverless ledger-based app con QLDB e NodeJS
Crea la tua prima serverless ledger-based app con QLDB e NodeJSCrea la tua prima serverless ledger-based app con QLDB e NodeJS
Crea la tua prima serverless ledger-based app con QLDB e NodeJSAmazon Web Services
 
API moderne real-time per applicazioni mobili e web
API moderne real-time per applicazioni mobili e webAPI moderne real-time per applicazioni mobili e web
API moderne real-time per applicazioni mobili e webAmazon Web Services
 
Database Oracle e VMware Cloud™ on AWS: i miti da sfatare
Database Oracle e VMware Cloud™ on AWS: i miti da sfatareDatabase Oracle e VMware Cloud™ on AWS: i miti da sfatare
Database Oracle e VMware Cloud™ on AWS: i miti da sfatareAmazon Web Services
 
Tools for building your MVP on AWS
Tools for building your MVP on AWSTools for building your MVP on AWS
Tools for building your MVP on AWSAmazon Web Services
 
How to Build a Winning Pitch Deck
How to Build a Winning Pitch DeckHow to Build a Winning Pitch Deck
How to Build a Winning Pitch DeckAmazon Web Services
 
Building a web application without servers
Building a web application without serversBuilding a web application without servers
Building a web application without serversAmazon Web Services
 
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...Amazon Web Services
 
Introduzione a Amazon Elastic Container Service
Introduzione a Amazon Elastic Container ServiceIntroduzione a Amazon Elastic Container Service
Introduzione a Amazon Elastic Container ServiceAmazon Web Services
 

Más de Amazon Web Services (20)

Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
 
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
 
Esegui pod serverless con Amazon EKS e AWS Fargate
Esegui pod serverless con Amazon EKS e AWS FargateEsegui pod serverless con Amazon EKS e AWS Fargate
Esegui pod serverless con Amazon EKS e AWS Fargate
 
Costruire Applicazioni Moderne con AWS
Costruire Applicazioni Moderne con AWSCostruire Applicazioni Moderne con AWS
Costruire Applicazioni Moderne con AWS
 
Come spendere fino al 90% in meno con i container e le istanze spot
Come spendere fino al 90% in meno con i container e le istanze spot Come spendere fino al 90% in meno con i container e le istanze spot
Come spendere fino al 90% in meno con i container e le istanze spot
 
Open banking as a service
Open banking as a serviceOpen banking as a service
Open banking as a service
 
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
 
OpsWorks Configuration Management: automatizza la gestione e i deployment del...
OpsWorks Configuration Management: automatizza la gestione e i deployment del...OpsWorks Configuration Management: automatizza la gestione e i deployment del...
OpsWorks Configuration Management: automatizza la gestione e i deployment del...
 
Microsoft Active Directory su AWS per supportare i tuoi Windows Workloads
Microsoft Active Directory su AWS per supportare i tuoi Windows WorkloadsMicrosoft Active Directory su AWS per supportare i tuoi Windows Workloads
Microsoft Active Directory su AWS per supportare i tuoi Windows Workloads
 
Computer Vision con AWS
Computer Vision con AWSComputer Vision con AWS
Computer Vision con AWS
 
Database Oracle e VMware Cloud on AWS i miti da sfatare
Database Oracle e VMware Cloud on AWS i miti da sfatareDatabase Oracle e VMware Cloud on AWS i miti da sfatare
Database Oracle e VMware Cloud on AWS i miti da sfatare
 
Crea la tua prima serverless ledger-based app con QLDB e NodeJS
Crea la tua prima serverless ledger-based app con QLDB e NodeJSCrea la tua prima serverless ledger-based app con QLDB e NodeJS
Crea la tua prima serverless ledger-based app con QLDB e NodeJS
 
API moderne real-time per applicazioni mobili e web
API moderne real-time per applicazioni mobili e webAPI moderne real-time per applicazioni mobili e web
API moderne real-time per applicazioni mobili e web
 
Database Oracle e VMware Cloud™ on AWS: i miti da sfatare
Database Oracle e VMware Cloud™ on AWS: i miti da sfatareDatabase Oracle e VMware Cloud™ on AWS: i miti da sfatare
Database Oracle e VMware Cloud™ on AWS: i miti da sfatare
 
Tools for building your MVP on AWS
Tools for building your MVP on AWSTools for building your MVP on AWS
Tools for building your MVP on AWS
 
How to Build a Winning Pitch Deck
How to Build a Winning Pitch DeckHow to Build a Winning Pitch Deck
How to Build a Winning Pitch Deck
 
Building a web application without servers
Building a web application without serversBuilding a web application without servers
Building a web application without servers
 
Fundraising Essentials
Fundraising EssentialsFundraising Essentials
Fundraising Essentials
 
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
 
Introduzione a Amazon Elastic Container Service
Introduzione a Amazon Elastic Container ServiceIntroduzione a Amazon Elastic Container Service
Introduzione a Amazon Elastic Container Service
 

Último

AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...Zilliz
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native ApplicationsWSO2
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfOrbitshub
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWERMadyBayot
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDropbox
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Orbitshub
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024The Digital Insurer
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024The Digital Insurer
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdfSandro Moreira
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...apidays
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Victor Rentea
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistandanishmna97
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 

Último (20)

AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistan
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 

AWS Security Best Practices and Design Patterns

  • 1. AWS Security Best Practices & Design Patterns Bill Shinn Principal Security Solutions Architect
  • 2. 1. Network Security Best Practices 2. Security Design Patterns 3. Reducing the Use of Long-term, Privileged Credentials
  • 3. 1. Network Security Best Practices 2. Security Design Patterns 3. Reducing the Use of Long-term, Privileged Credentials
  • 4. AWS lets customers choose where their content goes Region US-WEST (N. California) EU-WEST (Ireland) ASIA PAC (Tokyo) ASIA PAC (Singapore) US-WEST (Oregon) US-EAST (Virginia) SOUTH AMERICA (Sao Paulo) GOV CLOUD ASIA PAC (Sydney)
  • 5. Take advantage of high availability in every Region Availability Zone US-WEST (N. California) EU-WEST (Ireland) ASIA PAC (Tokyo) ASIA PAC (Bejing) ASIA PAC (Singapore) US-WEST (Oregon) US-EAST (Virginia) SOUTH AMERICA (Sao Paulo) GOV CLOUD ASIA PAC (Sydney)
  • 6. Use edge locations to serve content close to your customers Edge Locations Seattle Los Angeles (2) Jacksonville Dallas(2) St.Louis Miami Palo Alto London(2) Ashburn(2) Newark New York (2) Dublin Amsterdam Stockholm Frankfurt(2) Paris(2) Singapore(2) Tokyo Hong Kong Sao Paulo South Bend San Jose Osaka Milan Sydney Mumbai Chennai
  • 7. Amazon EC2 Instance Isolation Customer 1 Customer 2 Customer n … Physical Interfaces Hypervisor Virtual Interfaces … Firewall Customer 1 Security Groups Customer 2 Security Groups Customer n Security Groups
  • 8. Web Tier Application Tier Database Tier Only specific ports open to the Internet Staff can limit app tier access to a bastion/management tier Sync with on-premises All other Internet ports blocked by default database Amazon EC2 Security Group Firewall VPC Security Groups
  • 11. Defense-in-Depth Architecture Corporate Data center Internet Existing Perimeter Internet Gateway AWS Direct Connect VPN Security Stack Customer GW
  • 12. DB Tier App Tier Web Tier Protect Tier Route Table IAM NACL Internet Gateway VPN Internet Existing Perimeter Security Stack Corporate Data center VPN AWS DX CGW Network Protection
  • 13. DB Tier App Tier Web Tier Protect Tier IAM Internet Gateway VPN Internet Existing Perimeter Security Stack Corporate Data center VPN AWS DX CGW Instance Auto Scaling Host Security Software SSH Keys Managed Encryption AMIs Bastion Host Bootstrapping CloudFront Load Distro Penetration Testing Instance Protection
  • 14. DB Tier App Tier Web Tier Protect Tier IAM Internet Gateway VP N Internet Existing Perimeter Security Stack Corporate Data center VPN AWS DX CGW Database Oracle TDE MySQL, MS-SQL SSL Oracle NNE Redshfit Cluster Encryption RDS Auto Minor Patching SQL SSL Clients DynamoDB, SimpleDB SSL EMR Job Flow Roles Database Protection
  • 15. DB App Web Protect In-line Threat Management: Bastion Host Protect Tier Bastion
  • 16. DB App Web Protect In-line Threat Management: IPS/IDS NAT HA EIP 1 EIP 2 IPS NAT Layer EIP 3 EIP 4 App Layer IPS NAT Layer App Layer Availability Zone A Availability Zone B
  • 17. DB Tier App Tier Web Tier Protect Tier IAM S3 CloudFront Route Table NACL Internet Gateway Internet Existing Perimeter Security Stack VPN Corporate Data center VPN AWS DX CGW
  • 18. End Users/Students/Researchers Internet VPC CIDR 10.10.0.0/16 Gateway AZ A AZ B VPC Public Subnet 10.10.1.0/24 VPC Public Subnet 10.10.2.0/24 Public ELB Autoscaling Web Tier Internal ELB Autoscaling Application Tier VPC Private Subnet 10.10.3.0/24 VPC Private Subnet 10.10.4.0/24 RDS Master RDS Standby Snapshots VPC Private Subnet 10.10.5.0/24 VPC Private Subnet 10.10.6.0/24 Web App Hosting in VPC Multi-AZ RDS Data Tier Existing Datacenter VPN Connection Virtual Private Gateway Customer Gateway Or Direct Connect Network Partner Location Administrators & Campus Users Static/ Streaming Content CloudFront S3
  • 19. Internet Route 53 Gateway AZ A AZ B SG: ELBSecurityGroup VPC Public Subnet 10.40.1.0/24 Public ELB in VPC Public Subnet 10.40.2.0/24 TCP mode w/ Proxy Protocol SG: HAProxySecurityGroup HAProxy tier – if needed, session state managed via client-side cookie inserted by HAProxy. HAProxy nodes route to web server where user session exists, regardless of which HAProxy instance ELB directs client to. SSL termination/re-encryption. Keys stored in S3, retrieved by CloudFormation at system launch using entitlements of IAM role for EC2. Support for Proxy Protocol, x-forwarded-for, and JSESSION cookie (appsession) for sticky sessions via hashtable if needed. HAProxy/ Public SSL HAProxy/P ublic SSL HAProxy/P ublic SSL HAProxy/P ublic SSL VPC Private Subnet 10.40.3.0/24 VPC Private Subnet 10.40.4.0/24 Tomcat/P rivate SSL Tomcat/P rivate SSL Tomcat/P rivate SSL Tomcat/P rivate SSL SG: WebSecurityGroup HAProxy tier performs backend encryption between HAProxy nodes and Tomcat nodes. Keys stored in S3, retrieved by CloudFormation at system launch using entitlements of IAM role for EC2. VPC Private Subnet 10.40.5.0/24 VPC Private Subnet 10.40.6.0/24
  • 20. Internet Route 53 Gateway AZ A AZ B SG: HAProxySecurityGroup HAProxy tier – if needed, session state managed via client-side cookie inserted by HAProxy. HAProxy nodes route to web server where user session exists, regardless of which HAProxy instance ELB directs client to. SSL termination/re-encryption. Keys stored in S3, retrieved by CloudFormation at system launch using entitlements of IAM role for EC2. Support for Proxy Protocol, x-forwarded-for, and JSESSION cookie (appsession) for sticky sessions via hashtable if needed. HAProxy/ Public SSL HAProxy/P ublic SSL HAProxy/P ublic SSL HAProxy/P ublic SSL VPC Public Subnet 10.40.3.0/24 VPC Public Subnet 10.40.4.0/24 Tomcat/P rivate SSL Tomcat/P rivate SSL Tomcat/P rivate SSL Tomcat/P rivate SSL SG: WebSecurityGroup HAProxy tier performs backend encryption between HAProxy nodes and Tomcat nodes. Keys stored in S3, retrieved by CloudFormation at system launch using entitlements of IAM role for EC2. VPC Private Subnet 10.40.5.0/24 VPC Private Subnet 10.40.6.0/24
  • 21. VPC Best Practices Leverage existing governance • Address space allocation • Internet access policies • Management of routing protocol and route advertisements IAM policies for VPC actions • Separation of duties • Authentication & authorization enforcement Network Filtering • Use security groups for stateful network packet filtering • Use stateless network ACLs for separation of duties and coarse-grained management Connecting VPCs • Hub and Spoke using Direct Connect • VPN Hub and Spoke • VPC Peering
  • 22. EC2 Resource Permissions Assign permissions to EC2 Resources Instance Snapshot Volume Combine with existing permissions and policies based on EC2 Actions to create extremely fine-grained polices for managing AWS resources. Leverage Tagging and attribute-driven conditions Tags such as “Production” or “AppName” Overlay organizational structure such as cost centers or departments Require dedicated tenancy as a condition Additional EC2 resources and conditions added through 2014.
  • 23. 1. Network Security Best Practices 2. Security Design Patterns 3. Reducing the Use of Long-term, Privileged Credentials
  • 24. Agile Network Architecture Update and change private network addressing, subnets, route tables and administrative control of network functions to move systems and applications in response to vulnerabilities, regulatory changes, project partnerships, etc. Security Groups Use named security groups to logically control access between systems of like trust or based on data classification. Security attributes of system move with the system independent of network location. Relocate systems via API call to address changing threat environment. Amazon VPC +
  • 25. Non-Persistent Platforms Auto-scaling groups will ensure that capacity is predictable while you rotate out portions of the environment. You can also swap out the base AMI in an auto-scaling launch configuration with a freshly patched one, then progressively kill off stale instances. Changing the paradigm of what a target or attack surface looks like. Automation around Amazon Machine Image creation and bootstrapping with tools like AWS OpsWorks, Amazon Elastic Beanstalk, Chef or Puppet means you can constantly lay down a moving target. Amazon Auto-scaling Groups AWS Elastic Compute Cloud +
  • 26. Standardized Environments & Change Detection AWS SDKs Interrogate and describe entire environment with Java, Python, .NET, Ruby, PHP or other SDKs. Detect change in standardized environment programmatically and integrate with existing asset and SIEM workflows. Use CloudFormation to create an environment that mirrors your security standards. One API call results in hardened AMIs with base security controls installed, predictable firewall and network configuration, and appropriately defined access and roles. + AWS CloudFormation
  • 27. Instance Identity Security token service generates unique credentials and constantly rotates an additional token. Identity and Access Management roles for EC2 instances provide entitlements to the instance itself. Credentials are presented through a RESTful meta-data service accessible only on the local host. Credentials can be leveraged by apps that need to call AWS APIs, retrieve data from S3, etc. Native integration with SDKs and CLI tools. Security Token Service + Identity Management
  • 28. Consolidated API Logging Log archival solution for life-cycle management. CloudTrail provides increased visibility into your user activity by recording AWS API calls. Integration with Amazon SNS and ecosystem partners facilitates analytics. Provides logging up and down the stack in one place (storage, networking, instances, identity). Amazon S3 + Glacier + AWS CloudTrail

Notas del editor

  1. And just like an electricity grid, where you would not wire every factory to the same power station, the AWS infrastructure is global, with multiple regions around the globe from which services are available. This means you have control over things like where you applications run, where you data is stored, and where best to serve your customers from.
  2. Each AWS region is also split into Availability Zones, making highly available applications possible from within a region.
  3. Now over 50 cloudfront edge locations. And the whole footprint is supported by many edge locations, places from which content can be served to your customers for the fast possible response times.