SlideShare a Scribd company logo
1 of 69
©  2016,  Amazon  Web  Services,  Inc.  or  its  Affiliates.  All  rights  reserved.
Rodney  Haywood  – Senior  Manager,  Solutions  Architecture  A/NZ
April  2016
Security  and  Governance  on  AWS
Better,  Faster  and  Cost  Effective
Technical  201
"The  financial  services  industry  attracts  some  of  the  worst  
cyber  criminals.  We  work  closely  with  AWS to  develop  a  
security  model,  which  we  believe  enables  us  to  operate  
more  securely  in  the  public  cloud  than  we  can  in  our  own  
data  centers.”
Rob  Alexander,  CIO,  Capital  One
Better Faster
Lower
Cost
How  Might  AWS  be  
Better?
Security  is  Job  Zero
A  High  Pace  of  Innovation
Services
2009
Amazon  RDS
Amazon  VPC
AWS  Auto  Scaling
AWS  Elastic   Load
Balancing
2010
Amazon  SNS
AWS  Identity  
&  Access  
Management
Amazon  
Route  53
2011
Amazon  
ElastiCache
Amazon  SES
AWS  
CloudFormation
AWS  Direct  
Connect
AWS  Elastic  
Beanstalk
GovCloud
2012
Amazon  SWF
Amazon  
Redshift
Amazon  
Glacier
Amazon  
Dynamo  DB
Amazon  
CloudSearch
AWS  Storage
Gateway
AWS  Data  
Pipeline
2013
Amazon  
CloudTrail
Amazon  
CloudHSM
Amazon  
WorkSpaces
Amazon  
Kinesis
Amazon  Elastic
Transcoder
Amazon  
AppStream
AWS  OpsWorks
2014
AWS  KMS
Amazon  Config
Amazon  Cognito
Amazon  Mobile  
Analytics  
Amazon  EC2
Container  Service
Amazon  RDS  for  
Aurora
Amazon  Lambda
Amazon  WorkDocs
AWS  Directory  
Service
AWS  CodeCommit
AWS  CodePipeline
2015
Amazon  EFS
Amazon  API  Gateway
Amazon  WorkMail
Amazon  Machine  
Learning
AWS  Device   Farm
AWS  WAF
Amazon  
Elasticsearch Service
Amazon  QuickSight
AWS  Import/Export  
Snowball
Amazon  Kinesis   Firehose
Amazon  RDS  for  MariaDB
Amazon  Inspector
AWS  Database   Migration
Service  
AWS  IoT
Amazon  EC2  Container
Registry
Amazon  Kinesis   Analytics
AWS  Mobile  Hub
*  As  of  30  Nov  15
AWS  EMR
Amazon  CloudWatch
Amazon  FPS AWS  Import/Export
Trusted  Advisor AWS  Service   Catalog
AWS  CodeDeploy
Amazon  CloudWatch  Logs
Security  Services
2009
Amazon  RDS
Amazon  VPC
AWS  Auto  Scaling
AWS  Elastic   Load
Balancing
2010
Amazon  SNS
AWS  Identity  
&  Access  
Management
Amazon  
Route  53
2011
Amazon  
ElastiCache
Amazon  SES
AWS  
CloudFormation
AWS  Direct  
Connect
AWS  Elastic  
Beanstalk
GovCloud
2012
Amazon  SWF
Amazon  
Redshift
Amazon  
Glacier
Amazon  
Dynamo  DB
Amazon  
CloudSearch
AWS  Storage
Gateway
AWS  Data  
Pipeline
2013
Amazon  
CloudTrail
Amazon  
CloudHSM
Amazon  
WorkSpaces
Amazon  
Kinesis
Amazon  Elastic
Transcoder
Amazon  
AppStream
AWS  OpsWorks
2014
AWS  KMS
Amazon  Config
Amazon  Cognito
Amazon  Mobile  
Analytics  
Amazon  EC2
Container  Service
Amazon  RDS  for  
Aurora
Amazon  Lambda
Amazon  WorkDocs
AWS  Directory  Service
AWS  CodeCommit
AWS  CodePipeline
2015
Amazon  EFS
Amazon  API  Gateway
Amazon  WorkMail
Amazon  Machine  
Learning
AWS  Device   Farm
AWS  WAF
Amazon  
Elasticsearch Service
Amazon  QuickSight
AWS  Import/Export  
Snowball
Amazon  Kinesis   Firehose
Amazon  RDS  for  MariaDB
Amazon  Inspector
AWS  Database   Migration
Service  
AWS  IoT
Amazon  EC2  Container
Registry
Amazon  Kinesis   Analytics
AWS  Mobile  Hub
*  As  of  30  Nov  15
AWS  EMR
Amazon  CloudWatch
Amazon  FPS AWS  Import/Export
Trusted  Advisor AWS  Service   Catalog
AWS  CodeDeploy
Amazon  CloudWatch  Logs
Security  Features
0%
5%
10%
15%
20%
25%
30%
35%
40%
0
100
200
300
400
500
600
700
800
2008 2009 2010 2011 2012 2013 2014 2015
Security  Features All  Significant  Features  and  Services Percent
Unified  Fine-­grained  
Access  Control  
AWS  Identity  and  Access  
Management
Authenticate Authorize
Username  /  Password
Access  Key  /  Secret  Key
Federation
Temporary  Credentials
Cross  Account
Policies
• Action
• Resource
• Condition
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"ec2:AttachVolume",
"ec2:DetachVolume"
],
"Resource": "arn:aws:ec2:ap-southeast-2:ACCOUNT-ID-WITHOUT-HYPHENS:instance/*",
"Condition": {"StringEquals": {"ec2:ResourceTag/department": "dev"}}
},
{
"Effect": "Allow",
"Action": [
"ec2:AttachVolume",
"ec2:DetachVolume"
],
"Resource": "arn:aws:ec2:ap-southeast-2:ACCOUNT-ID-WITHOUT-HYPHENS:volume/*",
"Condition": {"StringEquals": {"ec2:ResourceTag/volume_user": "${aws:username}"}}
}
]
}
AWS  Identity  and  Access  
Management
Authenticate Authorize Audit
Username  /  Password
Access  Key  /  Secret  Key
Federation
Temporary  Credentials
Cross  Account
Policies
• Action
• Resource
• Condition
AWS  CloudTrail
Record  of  API  calls
Visibility
“You  can’t  secure  what  you  don’t  know  about.”
What  Assets do  I  Have?
View  Current  Assets  via  Multiple  Interfaces  
• AWS  Management  Console
• AWS  SDKs
• AWS  CLI
• Windows  PowerShell
What  Instances  do  I  Have  in  a  Region?
AWS  SDK  for  Ruby
#!/usr/bin/ruby
require 'rubygems’; require 'aws-sdk'
AWS.regions['ap-southeast-2'].ec2.instances.each do |instance|
puts instance.id
end
OUTPUT
i-9e47d6a1
i-93eb2cad
i-9bc1b747
i-5085ef8c
i-49739697
AWS  CLI
$aws ec2 describe-instances --query "Reservations[*].Instances[*].InstanceId" --output text
What  Access  is  Occurring?
AWS  CloudTrail
• Records  AWS  API  to  S3  giving  you  a  history
• Includes  the  identity,  time  and  source  IP  address  of  
the  API  caller.  Request  Parameters and  the  Response
elements  returned
• Enables  security  analysis,  resource  change  tracking,  
and  compliance  auditing
• Optionally  encrypted  with  your  AWS  KMS  key  
• Optional  Log  File  Integrity  Validation
Is  Access  and  Permission  Being  Used?
• IAM  Password  &  IAM  Access  Key  last  used  details
• IAM  Access  Advisor
What  Activity  is  Occurring?
AWS  CloudWatch  Events
• Near  real-­time  stream  of  system  events  that  describe  
changes  in  AWS  resources
• Supported  events  include  console  login,  auto  scaling,  
instance  state  change,  an  API  call  or  a  schedule
• Triggers  to  Lambda  function,  SNS  topic,  SQS  queue,  
Kinesis  stream  or  built-­in  functions
Creating  a  CloudWatch  Event  to  notify  on  login
Receiving  a  CloudWatch  Event  for  an  API  call
{
"detail-type": "AWS API Call via CloudTrail",
"source": "aws.cloudformation",
"time": "2016-04-21T07:37:57Z",
"region": "ap-southeast-2",
"detail": {
"userIdentity": {
"type": "IAMUser",
"userName": "rodosadmin",
"sessionContext": {
"attributes": {
"mfaAuthenticated": "true",
"creationDate": "2016-04-21T01:55:06Z"
}
},
},
"eventSource": "cloudformation.amazonaws.com",
"eventName": "CreateStack",
"awsRegion": "ap-southeast-2",
"sourceIPAddress": "144.132.157.178",
"requestParameters": {
"stackName": "CoffeeShop",
"parameters": [...],
"templateURL": "http://s3-ap-southeast-
2.amazonaws.com/my.template",
"tags": [],
"disableRollback": false,
},
"responseElements": {
"stackId": "arn:aws:cloudformation:ap-
southeast-
2:518127492581:stack/CoffeeShop/f7550530-0793-
11e6-bb66-50fae957fce6"
},
}
}
What  Network  Activity  is  Occurring?
• VPC  Flow  Logs
Capture  IP  traffic  information  to  &  from  VPC  interfaces
• AWS  Web  Application  Firewall
Improve  web  traffic  visibility  to  monitor  requests  that  
match  your  security  filter  criteria
What  Activity Occurred?
AWS  Config
A  fully  managed  service  that  provides  you  with  an  AWS  
resource  inventory,  configuration  history,  and  
configuration  change  notifications  to  enable  security  and  
governance.  
• Supports  EC2,  IAM  and  CloudTrail
• Interactive  view  in  AWS  Management  Console
• History  files  stored  in  S3
• Send  change  events  to  an  SNS  topic
How  Might  AWS  Be  
Faster?
Reduced  Heavy  Lifting
Audits,  Accreditations  and  Certifications
• Independent  3rd party  assessors  review  and  validate  AWS  internal  controls
• Audit  reports  (such  as  SOC1  &  SOC2)  are  available  under  NDA.  
• You  can  review  the  control  results  and  auditor  notes.
• You  can  take  comfort  that  the  controls  have  been  appropriately  
implemented  and  are  operating  effectively.
AWS	
  Foundation	
  Services
AWS	
  Global	
  
Infrastructure
Your	
  own	
  
accreditation
Start  with   services
Your	
  own	
  
certifications
Your	
  own	
  
external	
  audits
Built  on  AWS  
consistent baseline  of  
validated  controls
Customer  scope  and  
effort  is  reduced
Better  results  through  
focused  efforts
Shared  Responsibility  across  Deployment  Models
Infrastructure  
Services
Container  Services Abstract  Services
Customer  IAM
AWS  IAM
Networking/Firewall
Data
Applications
Operating  System
Networking/Firewall
Data
Customer  IAM
AWS  IAM
AWS  Foundation  
Services
AWS  Global  
Infrastructure
AWS  Foundation  
Services
AWS  Global  
Infrastructure
Applications
Operating  System
AWS  Foundation  
Services
AWS  Global  
Infrastructure
Applications
Operating  System
Networking/Firewall
AWS  IAM
Data
Customer  IAM
Customers
AWS
AWS
AWS
Customers
Amazon  
EC2
Amazon
RDS
Amazon  
Redshift
Elastic  Load  
Balancing
Amazon
DynamoDB
Amazon
S3
Amazon  
Kinesis
Customers
Automation
Automation
• Completely  API  driven
• Execute  faster,  remediate  faster
• Build  more  resilient  processes
• Complete  traceability
Lower  automation  results  in  longer  planning  
cycles  and  more  complex  manual  processes,  
which  reduces  speed  and  reliability.
Environment  Lifecycle
Event  Response
driving
An  Ecosystem  of  
Innovators
https://github.com/awslabs/aws-­config-­rules/
A  Community  – Based  Source  of  Custom  Rules  for  AWS  
Config
For  example
23.  Ensure  that  no  users  have  password  policy  requirements  weaker  than  
specified.
24.  Ensure  that  no  users  have  access  keys  that  have  never  been  used.
25.  Ensure  that  there  are  no  users  that  have  never  been  logged  in.
AWS  Foundations  Benchmark
A set  of  security  
configuration  best  
practices  for  AWS.  
Providing  AWS  users  with  
clear,  step-­by-­step  
implementation  and  
assessment  procedures.  
Cloud  Custodian  is  a  rules  engine  for  AWS  resource  management.  It  allows  users  to  define  
policies  to  be  enforced to  enable  a  well  managed  cloud,  with  metrics  and  structured  outputs.  
It  consolidates  many  of  the  adhoc scripts  organizations  have  into  a  lightweight  and  flexible  
tool.
Organizations  can  use  Custodian  to  manage  their  AWS  environments  by  ensuring  
compliance  to  security  policies,  tag  policies,  garbage  collection  of  unused  resources,  and  
cost  management  via  off-­hours  resource  management.
Cloud  Custodian
How  Might  AWS  be  
Lower  Cost?
Commodity  Pricing
Amazon  
CloudWatch
AWS
CloudTrail
AWS
Config
AWS  WAFAWS  Directory  
Service
AWS  KMS
VPN  
Connection
AWS
CloudHSM
Amazon  
VPC
AWS
CloudFormation
AWS  IAM
MFA  
token
EBS  
Encryption
Eligible  Free  Tier  /  Trial Pay  for  Use
Free
Amazon  
Inspector
Listings  for  “security”  
products  in  the  Sydney  
region.
• 844  in  total
• 102  with  a  4★ rating
• 36  launch  CloudFormation
Better Faster Lower
Cost
Framework  for  
Modernising Security  
Governance.
1st
Line  of  Defense 2nd
Line  of  Defense 3rd
Line  of  Defense
Three  Lines  of  Defense
Operations Supervision Evaluation
1st
Line  of  Defense 2nd
Line  of  Defense 3rd
Line  of  Defense
Management  
Controls
Internal  
Control  
Measures
Internal  Audit
Financial  Control
Security
Risk  Management
Quality
Inspection
Compliance
Three  Lines  of  Defense  – Responsibilities  
Operations Supervision Evaluation
1st
Line  of  Defense 2nd
Line  of  Defense 3rd
Line  of  Defense
Controls
• Transparency
• Log  Processing
• Policy  Review
• Separation  of  Duties  
• Account  Governance
• Event  Review
Controls
• Configuration   Controls
• Authorisation Controls
• Change  Controls
• Logging  &  Integrity  Controls
• Policy  Controls
• Policy  Violation   Controls
Three  Lines  of  Defense  – Applicable  Controls
Controls
• Network  Controls
• Access  Controls
• Traceability  Controls
• Encryption  Controls
• Awareness  and  Response  
Controls
Operations Supervision Evaluation
1st
Line  of  Defense 2nd
Line  of  Defense 3rd
Line  of  Defense
AWS  Applicable  ServicesAWS  Applicable  Services
Three  Lines  of  Defense  – AWS  Services
AWS  Applicable  Services
Amazon  
VPC
AWS  IAM AWS  KMS
Amazon  
CloudWatch
Amazon  
CloudWatch
AWS
Config
AWS
CloudTrail
AWS
CloudFormation
AWS
CloudTrail
Permissions
Amazon
SNS
Amazon  
Inspector
AWS
Config
Amazon  S3Marketplace
Operations Supervision Evaluation
AWS  Trusted  
Advisor
3 Lines  of  Defense  Example
Control  :  Are  policies  enforced?
Enforcement  :  Configuration  Management
1st Line  of  Defense  (Operations)  :  Configuration  Management
CloudFormation
template
Admin
Define
AWS Service Catalog
Publish
CloudFormation
stack
Users
Browse  and  Launch
Provisions
2nd Line  of  Defense  (Supervision)  -­ Configuration  Monitoring
CloudFormation
template
Admin
Define
AWS Service Catalog
Publish
CloudFormation
stack
Users
Browse  and  Launch
AWS Config
Provisions
AWS Config rules
3rd Line  of  Defense  (Evaluation)  -­ Configuration  Log  Testing
CloudFormation
template
Admin
Define
AWS Service Catalog
Publish
CloudFormation
stack
Users
Browse  and  Launch
AWS Config
Provisions
AWS Config rules AWS CloudTrail
Amazon S3
1st
Line  of  Defense 2nd
Line  of  Defense 3rd
Line  of  Defense
Three  Lines  of  Defense  Risk  Management    
INFRASTRUCTURE  
AS  CODE
AUTOMATE  
COMPLIANCE
TOTAL  
TRANSPARENCY
Operations Supervision Evaluation
Better Faster Lower
Cost
Modernize  
Governance
Aaron  McKeown,  Lead  Security  Architect,  Xero
Cloud  Security  @  Xero
Beautiful  cloud-­based  accounting  software  connecting  people  
with  the  right  numbers  anytime,  anywhere,  on  any  device
subscribers
600,000
474Mraised  in  capital
$
transactions  processed  
in  past  12  mths
356B$
+
23Mbusinesses  have  interacted  
on  the  Xero  platform
+
215Minvoices  in  past  12  mths
+
1300staff  globally
+
All  figures  shown  are  in  NZD
subscription  revenue  
FY15
121M$
+
Improving  data  
protection
Eliminating  
scheduled  
downtime
Maintaining  
and  improving  
our  security
Support  the  next  
wave  of  growth
Reducing  our  per  
customer  cost
Public  cloud  migration
Repeatable  and  Automated  
build  and  management  of  
Security  Systems
Accelerated  pace  of  
security  innovation
On-­Demand  security  
infrastructure  that  works  at  
any  scale
Key  Principles
VPN  
connectivity
Host  Based  
Security
Web  Application  
Security  and  
Delivery
Shared  Key  
Management  
Services
Security  
Operations  and  
Consulting  
Services
Secure  
Bastion  
Access
Proxy  Services
Security  as  a  Service
Security  by  Design  -­
What's  that?
Communication  is  Key  -­
Who  are  your  
spokespeople?  
Measure  and  Test,  
Monitor  Everything  
Welcome  to  the  cloud  -­
"Where's  my  span  port"?
Key  Learnings
Repeatable  and  Automated  
build  and  management  of  
Security  Systems
Accelerated  pace  of  
security  innovation
On-­Demand  security  
infrastructure  that  works  
at  any  scale
Final  Takeaways
Thank  You!
Additional  AWS  Security  and  Compliance  Resources
http://aws.amazon.com/security
http://aws.amazon.com/compliance
http://aws.amazon.com/compliance/#whitepapers
https://aws.amazon.com/compliance/compliance-­enablers/
http://aws.amazon.com/documentation  
http://aws.amazon.com/iam
https://www.youtube.com/user/AmazonWebServices
https://aws.amazon.com/blogs/aws/new-­aws-­security-­courses/
awscompliance@amazon.com  
AWS  Training  &  Certification
Intro  Videos  &  Labs  
Free  videos  and  labs  to  
help  you  learn  to  work  
with  30+  AWS  services  
– in  minutes!
Training  Classes
In-­person  and  online  
courses  to  build  
technical  skills  –
taught  by  accredited  
AWS  instructors
Online  Labs  
Practice  working  with  
AWS  services  in  live  
environment  –
Learn  how  related  
services  work  
together
AWS  Certification
Validate  technical  
skills  and  expertise  –
identify  qualified  IT  
talent  or  show  you  
are  AWS  cloud  ready
Learn  more:  aws.amazon.com/training
Your  Training  Next  Steps:
ü Visit  the  AWS  Training  &  Certification  pod  to  discuss  your  
training  plan  &  AWS  Summit  training  offer
ü Register  &  attend  AWS  instructor  led  training
ü Get  Certified
AWS  Certified?  Visit  the  AWS  Summit  Certification  Lounge  to  pick  up  your  swag
Learn  more:  aws.amazon.com/training
Thank  you!

More Related Content

What's hot

Design Patterns for Developers - Technical 201
Design Patterns for Developers - Technical 201Design Patterns for Developers - Technical 201
Design Patterns for Developers - Technical 201Amazon Web Services
 
Creating your Hybrid Cloud with AWS -Technical 201
Creating your Hybrid Cloud with AWS -Technical 201Creating your Hybrid Cloud with AWS -Technical 201
Creating your Hybrid Cloud with AWS -Technical 201Amazon Web Services
 
AWS re:Invent 2016: AWS Mobile State of the Union - Serverless, New User Expe...
AWS re:Invent 2016: AWS Mobile State of the Union - Serverless, New User Expe...AWS re:Invent 2016: AWS Mobile State of the Union - Serverless, New User Expe...
AWS re:Invent 2016: AWS Mobile State of the Union - Serverless, New User Expe...Amazon Web Services
 
AWS Security for Financial Services
AWS Security for Financial ServicesAWS Security for Financial Services
AWS Security for Financial ServicesAmazon Web Services
 
Compute Without Servers – Building Applications with AWS Lambda - Technical 301
Compute Without Servers – Building Applications with AWS Lambda - Technical 301Compute Without Servers – Building Applications with AWS Lambda - Technical 301
Compute Without Servers – Building Applications with AWS Lambda - Technical 301Amazon Web Services
 
在雲端開發架構支援大規模流量的行動/網頁應用程式
在雲端開發架構支援大規模流量的行動/網頁應用程式在雲端開發架構支援大規模流量的行動/網頁應用程式
在雲端開發架構支援大規模流量的行動/網頁應用程式Amazon Web Services
 
在 Amazon Web Services 實現大數據應用-電子商務的案例分享
在 Amazon Web Services 實現大數據應用-電子商務的案例分享在 Amazon Web Services 實現大數據應用-電子商務的案例分享
在 Amazon Web Services 實現大數據應用-電子商務的案例分享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
 
Content Delivery: accelerare in modo sicuro e flessibile siti web e applicazioni
Content Delivery: accelerare in modo sicuro e flessibile siti web e applicazioniContent Delivery: accelerare in modo sicuro e flessibile siti web e applicazioni
Content Delivery: accelerare in modo sicuro e flessibile siti web e applicazioniAmazon Web Services
 
Aws Architecture Fundamentals
Aws Architecture FundamentalsAws Architecture Fundamentals
Aws Architecture Fundamentals2nd Watch
 
Serverless Security Automation | AWS Public Sector Summit 2017
Serverless Security Automation | AWS Public Sector Summit 2017Serverless Security Automation | AWS Public Sector Summit 2017
Serverless Security Automation | AWS Public Sector Summit 2017Amazon Web Services
 
Getting Started with AWS Lambda and the Serverless Cloud
Getting Started with AWS Lambda and the Serverless CloudGetting Started with AWS Lambda and the Serverless Cloud
Getting Started with AWS Lambda and the Serverless CloudAmazon Web Services
 
AWSome Day Intro - Stockholm 20160308
AWSome Day Intro - Stockholm 20160308AWSome Day Intro - Stockholm 20160308
AWSome Day Intro - Stockholm 20160308Amazon Web Services
 
Following Well Architected Frameworks - Lunch and Learn.pdf
Following Well Architected Frameworks - Lunch and Learn.pdfFollowing Well Architected Frameworks - Lunch and Learn.pdf
Following Well Architected Frameworks - Lunch and Learn.pdfAmazon Web Services
 
AWS Customers Saving Lives with Mobile Technology | AWS Public Sector Summit ...
AWS Customers Saving Lives with Mobile Technology | AWS Public Sector Summit ...AWS Customers Saving Lives with Mobile Technology | AWS Public Sector Summit ...
AWS Customers Saving Lives with Mobile Technology | AWS Public Sector Summit ...Amazon Web Services
 
AWS re:Invent 2016: Tips for Passing APN Technical Validations (GPSISV2)
AWS re:Invent 2016: Tips for Passing APN Technical Validations (GPSISV2)AWS re:Invent 2016: Tips for Passing APN Technical Validations (GPSISV2)
AWS re:Invent 2016: Tips for Passing APN Technical Validations (GPSISV2)Amazon Web Services
 
Introduction to DevSecOps on AWS
Introduction to DevSecOps on AWSIntroduction to DevSecOps on AWS
Introduction to DevSecOps on AWSAmazon Web Services
 
Accelerating innovation and reducing cost using cloud based software procurement
Accelerating innovation and reducing cost using cloud based software procurementAccelerating innovation and reducing cost using cloud based software procurement
Accelerating innovation and reducing cost using cloud based software procurementAmazon Web Services
 
NEW LAUNCH! AWS Shield—A Managed DDoS Protection Service
NEW LAUNCH! AWS Shield—A Managed DDoS Protection ServiceNEW LAUNCH! AWS Shield—A Managed DDoS Protection Service
NEW LAUNCH! AWS Shield—A Managed DDoS Protection ServiceAmazon Web Services
 
Migrating to the cloud - Windows on AWS
Migrating to the cloud - Windows on AWSMigrating to the cloud - Windows on AWS
Migrating to the cloud - Windows on AWSAmazon Web Services
 

What's hot (20)

Design Patterns for Developers - Technical 201
Design Patterns for Developers - Technical 201Design Patterns for Developers - Technical 201
Design Patterns for Developers - Technical 201
 
Creating your Hybrid Cloud with AWS -Technical 201
Creating your Hybrid Cloud with AWS -Technical 201Creating your Hybrid Cloud with AWS -Technical 201
Creating your Hybrid Cloud with AWS -Technical 201
 
AWS re:Invent 2016: AWS Mobile State of the Union - Serverless, New User Expe...
AWS re:Invent 2016: AWS Mobile State of the Union - Serverless, New User Expe...AWS re:Invent 2016: AWS Mobile State of the Union - Serverless, New User Expe...
AWS re:Invent 2016: AWS Mobile State of the Union - Serverless, New User Expe...
 
AWS Security for Financial Services
AWS Security for Financial ServicesAWS Security for Financial Services
AWS Security for Financial Services
 
Compute Without Servers – Building Applications with AWS Lambda - Technical 301
Compute Without Servers – Building Applications with AWS Lambda - Technical 301Compute Without Servers – Building Applications with AWS Lambda - Technical 301
Compute Without Servers – Building Applications with AWS Lambda - Technical 301
 
在雲端開發架構支援大規模流量的行動/網頁應用程式
在雲端開發架構支援大規模流量的行動/網頁應用程式在雲端開發架構支援大規模流量的行動/網頁應用程式
在雲端開發架構支援大規模流量的行動/網頁應用程式
 
在 Amazon Web Services 實現大數據應用-電子商務的案例分享
在 Amazon Web Services 實現大數據應用-電子商務的案例分享在 Amazon Web Services 實現大數據應用-電子商務的案例分享
在 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 AWS
 
Content Delivery: accelerare in modo sicuro e flessibile siti web e applicazioni
Content Delivery: accelerare in modo sicuro e flessibile siti web e applicazioniContent Delivery: accelerare in modo sicuro e flessibile siti web e applicazioni
Content Delivery: accelerare in modo sicuro e flessibile siti web e applicazioni
 
Aws Architecture Fundamentals
Aws Architecture FundamentalsAws Architecture Fundamentals
Aws Architecture Fundamentals
 
Serverless Security Automation | AWS Public Sector Summit 2017
Serverless Security Automation | AWS Public Sector Summit 2017Serverless Security Automation | AWS Public Sector Summit 2017
Serverless Security Automation | AWS Public Sector Summit 2017
 
Getting Started with AWS Lambda and the Serverless Cloud
Getting Started with AWS Lambda and the Serverless CloudGetting Started with AWS Lambda and the Serverless Cloud
Getting Started with AWS Lambda and the Serverless Cloud
 
AWSome Day Intro - Stockholm 20160308
AWSome Day Intro - Stockholm 20160308AWSome Day Intro - Stockholm 20160308
AWSome Day Intro - Stockholm 20160308
 
Following Well Architected Frameworks - Lunch and Learn.pdf
Following Well Architected Frameworks - Lunch and Learn.pdfFollowing Well Architected Frameworks - Lunch and Learn.pdf
Following Well Architected Frameworks - Lunch and Learn.pdf
 
AWS Customers Saving Lives with Mobile Technology | AWS Public Sector Summit ...
AWS Customers Saving Lives with Mobile Technology | AWS Public Sector Summit ...AWS Customers Saving Lives with Mobile Technology | AWS Public Sector Summit ...
AWS Customers Saving Lives with Mobile Technology | AWS Public Sector Summit ...
 
AWS re:Invent 2016: Tips for Passing APN Technical Validations (GPSISV2)
AWS re:Invent 2016: Tips for Passing APN Technical Validations (GPSISV2)AWS re:Invent 2016: Tips for Passing APN Technical Validations (GPSISV2)
AWS re:Invent 2016: Tips for Passing APN Technical Validations (GPSISV2)
 
Introduction to DevSecOps on AWS
Introduction to DevSecOps on AWSIntroduction to DevSecOps on AWS
Introduction to DevSecOps on AWS
 
Accelerating innovation and reducing cost using cloud based software procurement
Accelerating innovation and reducing cost using cloud based software procurementAccelerating innovation and reducing cost using cloud based software procurement
Accelerating innovation and reducing cost using cloud based software procurement
 
NEW LAUNCH! AWS Shield—A Managed DDoS Protection Service
NEW LAUNCH! AWS Shield—A Managed DDoS Protection ServiceNEW LAUNCH! AWS Shield—A Managed DDoS Protection Service
NEW LAUNCH! AWS Shield—A Managed DDoS Protection Service
 
Migrating to the cloud - Windows on AWS
Migrating to the cloud - Windows on AWSMigrating to the cloud - Windows on AWS
Migrating to the cloud - Windows on AWS
 

Viewers also liked

AWS re:Invent 2016: Governance Strategies for Cloud Transformation (WWPS302)
AWS re:Invent 2016: Governance Strategies for Cloud Transformation (WWPS302)AWS re:Invent 2016: Governance Strategies for Cloud Transformation (WWPS302)
AWS re:Invent 2016: Governance Strategies for Cloud Transformation (WWPS302)Amazon Web Services
 
Governance Strategies for Cloud Transformation | AWS Public Sector Summit 2016
Governance Strategies for Cloud Transformation | AWS Public Sector Summit 2016Governance Strategies for Cloud Transformation | AWS Public Sector Summit 2016
Governance Strategies for Cloud Transformation | AWS Public Sector Summit 2016Amazon Web Services
 
The People Model and Cloud Transformation | AWS Public Sector Summit 2016
The People Model and Cloud Transformation | AWS Public Sector Summit 2016The People Model and Cloud Transformation | AWS Public Sector Summit 2016
The People Model and Cloud Transformation | AWS Public Sector Summit 2016Amazon Web Services
 
EmilyRitschard Edge Environmental Rec Letter
EmilyRitschard Edge Environmental Rec LetterEmilyRitschard Edge Environmental Rec Letter
EmilyRitschard Edge Environmental Rec LetterEmily Ritschard
 
مجالس تزكية النفوس لفضيلة الشيخ فوزي محمد أبوزيد
مجالس تزكية النفوس  لفضيلة الشيخ فوزي محمد أبوزيدمجالس تزكية النفوس  لفضيلة الشيخ فوزي محمد أبوزيد
مجالس تزكية النفوس لفضيلة الشيخ فوزي محمد أبوزيدعبد الفتاح درويش الرشايده
 
NaviSite SaaS ISV Enablement Webinar
NaviSite SaaS ISV Enablement WebinarNaviSite SaaS ISV Enablement Webinar
NaviSite SaaS ISV Enablement WebinarWilliam Toll
 
Big Data Expo 2015 - Microsoft Transform you data into intelligent action
Big Data Expo 2015 - Microsoft Transform you data into intelligent actionBig Data Expo 2015 - Microsoft Transform you data into intelligent action
Big Data Expo 2015 - Microsoft Transform you data into intelligent actionBigDataExpo
 
Modern IT Governance Through Transparency and Automation
Modern IT Governance Through Transparency and AutomationModern IT Governance Through Transparency and Automation
Modern IT Governance Through Transparency and Automation Amazon Web Services
 
IT Performance Measurement using IT Governance Metric
IT Performance Measurement using IT Governance MetricIT Performance Measurement using IT Governance Metric
IT Performance Measurement using IT Governance MetricPECB
 
Enterprise Cloud Governance: A Frictionless Approach
Enterprise Cloud Governance: A Frictionless ApproachEnterprise Cloud Governance: A Frictionless Approach
Enterprise Cloud Governance: A Frictionless ApproachRightScale
 
Paul Johnston - What I Wish I'd Known Last Year
Paul Johnston - What I Wish I'd Known Last YearPaul Johnston - What I Wish I'd Known Last Year
Paul Johnston - What I Wish I'd Known Last YearServerlessConf
 
Cloud Computing & Impact Of IT On Organization
Cloud Computing & Impact Of IT On OrganizationCloud Computing & Impact Of IT On Organization
Cloud Computing & Impact Of IT On OrganizationRomana Sharmin
 
Noelle La Charite - Building Voice Experiences
Noelle La Charite - Building Voice ExperiencesNoelle La Charite - Building Voice Experiences
Noelle La Charite - Building Voice ExperiencesServerlessConf
 
Business impact of cloud computing
Business impact of cloud computingBusiness impact of cloud computing
Business impact of cloud computingOpen Stack
 
AWS re:Invent 2016: Case Study: Data-Heavy Healthcare: UPMCe’s Transformative...
AWS re:Invent 2016: Case Study: Data-Heavy Healthcare: UPMCe’s Transformative...AWS re:Invent 2016: Case Study: Data-Heavy Healthcare: UPMCe’s Transformative...
AWS re:Invent 2016: Case Study: Data-Heavy Healthcare: UPMCe’s Transformative...Amazon Web Services
 
Cloud computing and impact on the business
Cloud computing and impact on the businessCloud computing and impact on the business
Cloud computing and impact on the businessJuvénal CHOKOGOUE
 
Kapil Thangavelu - Cloud Custodian
Kapil Thangavelu - Cloud CustodianKapil Thangavelu - Cloud Custodian
Kapil Thangavelu - Cloud CustodianServerlessConf
 

Viewers also liked (20)

AWS Governance Overview - Beach
AWS Governance Overview - BeachAWS Governance Overview - Beach
AWS Governance Overview - Beach
 
AWS re:Invent 2016: Governance Strategies for Cloud Transformation (WWPS302)
AWS re:Invent 2016: Governance Strategies for Cloud Transformation (WWPS302)AWS re:Invent 2016: Governance Strategies for Cloud Transformation (WWPS302)
AWS re:Invent 2016: Governance Strategies for Cloud Transformation (WWPS302)
 
Governance Strategies for Cloud Transformation | AWS Public Sector Summit 2016
Governance Strategies for Cloud Transformation | AWS Public Sector Summit 2016Governance Strategies for Cloud Transformation | AWS Public Sector Summit 2016
Governance Strategies for Cloud Transformation | AWS Public Sector Summit 2016
 
The People Model and Cloud Transformation | AWS Public Sector Summit 2016
The People Model and Cloud Transformation | AWS Public Sector Summit 2016The People Model and Cloud Transformation | AWS Public Sector Summit 2016
The People Model and Cloud Transformation | AWS Public Sector Summit 2016
 
EmilyRitschard Edge Environmental Rec Letter
EmilyRitschard Edge Environmental Rec LetterEmilyRitschard Edge Environmental Rec Letter
EmilyRitschard Edge Environmental Rec Letter
 
مجالس تزكية النفوس لفضيلة الشيخ فوزي محمد أبوزيد
مجالس تزكية النفوس  لفضيلة الشيخ فوزي محمد أبوزيدمجالس تزكية النفوس  لفضيلة الشيخ فوزي محمد أبوزيد
مجالس تزكية النفوس لفضيلة الشيخ فوزي محمد أبوزيد
 
NaviSite SaaS ISV Enablement Webinar
NaviSite SaaS ISV Enablement WebinarNaviSite SaaS ISV Enablement Webinar
NaviSite SaaS ISV Enablement Webinar
 
Big Data Expo 2015 - Microsoft Transform you data into intelligent action
Big Data Expo 2015 - Microsoft Transform you data into intelligent actionBig Data Expo 2015 - Microsoft Transform you data into intelligent action
Big Data Expo 2015 - Microsoft Transform you data into intelligent action
 
Modern IT Governance Through Transparency and Automation
Modern IT Governance Through Transparency and AutomationModern IT Governance Through Transparency and Automation
Modern IT Governance Through Transparency and Automation
 
IT Performance Measurement using IT Governance Metric
IT Performance Measurement using IT Governance MetricIT Performance Measurement using IT Governance Metric
IT Performance Measurement using IT Governance Metric
 
Enterprise Cloud Governance: A Frictionless Approach
Enterprise Cloud Governance: A Frictionless ApproachEnterprise Cloud Governance: A Frictionless Approach
Enterprise Cloud Governance: A Frictionless Approach
 
Paul Johnston - What I Wish I'd Known Last Year
Paul Johnston - What I Wish I'd Known Last YearPaul Johnston - What I Wish I'd Known Last Year
Paul Johnston - What I Wish I'd Known Last Year
 
Cloud Computing & Impact Of IT On Organization
Cloud Computing & Impact Of IT On OrganizationCloud Computing & Impact Of IT On Organization
Cloud Computing & Impact Of IT On Organization
 
Protecting Your Data in AWS
Protecting Your Data in AWSProtecting Your Data in AWS
Protecting Your Data in AWS
 
Noelle La Charite - Building Voice Experiences
Noelle La Charite - Building Voice ExperiencesNoelle La Charite - Building Voice Experiences
Noelle La Charite - Building Voice Experiences
 
Business impact of cloud computing
Business impact of cloud computingBusiness impact of cloud computing
Business impact of cloud computing
 
Azure cloud governance deck
Azure cloud governance deckAzure cloud governance deck
Azure cloud governance deck
 
AWS re:Invent 2016: Case Study: Data-Heavy Healthcare: UPMCe’s Transformative...
AWS re:Invent 2016: Case Study: Data-Heavy Healthcare: UPMCe’s Transformative...AWS re:Invent 2016: Case Study: Data-Heavy Healthcare: UPMCe’s Transformative...
AWS re:Invent 2016: Case Study: Data-Heavy Healthcare: UPMCe’s Transformative...
 
Cloud computing and impact on the business
Cloud computing and impact on the businessCloud computing and impact on the business
Cloud computing and impact on the business
 
Kapil Thangavelu - Cloud Custodian
Kapil Thangavelu - Cloud CustodianKapil Thangavelu - Cloud Custodian
Kapil Thangavelu - Cloud Custodian
 

Similar to Security & Governance on AWS – Better, Faster, and Cost Effective - Technical 201

Simplify & Standardise your migration to AWS with a Migration Landing Zone
Simplify & Standardise your migration to AWS with a Migration Landing ZoneSimplify & Standardise your migration to AWS with a Migration Landing Zone
Simplify & Standardise your migration to AWS with a Migration Landing ZoneAmazon Web Services
 
Access Control for the Cloud: AWS Identity and Access Management (IAM) (SEC20...
Access Control for the Cloud: AWS Identity and Access Management (IAM) (SEC20...Access Control for the Cloud: AWS Identity and Access Management (IAM) (SEC20...
Access Control for the Cloud: AWS Identity and Access Management (IAM) (SEC20...Amazon Web Services
 
Accelerate your Cloud Success with Platform Services
Accelerate your Cloud Success with Platform ServicesAccelerate your Cloud Success with Platform Services
Accelerate your Cloud Success with Platform ServicesAmazon Web Services
 
AWS Cloud Controls for Security - Usman Shakeel
AWS Cloud Controls for Security  - Usman ShakeelAWS Cloud Controls for Security  - Usman Shakeel
AWS Cloud Controls for Security - Usman ShakeelAmazon Web Services
 
AWS Services Overview and Quarterly Update - April 2017 AWS Online Tech Talks
AWS Services Overview and Quarterly Update - April 2017 AWS Online Tech TalksAWS Services Overview and Quarterly Update - April 2017 AWS Online Tech Talks
AWS Services Overview and Quarterly Update - April 2017 AWS Online Tech TalksAmazon Web Services
 
AWS Services Overview and Quarterly Update - April 2017 AWS Online Tech Talks
AWS Services Overview and Quarterly Update - April 2017 AWS Online Tech TalksAWS Services Overview and Quarterly Update - April 2017 AWS Online Tech Talks
AWS Services Overview and Quarterly Update - April 2017 AWS Online Tech TalksAmazon Web Services
 
AWS Initiate Berlin - Security Sessions - Mitigating Cyber Risks.pdf
AWS Initiate Berlin - Security Sessions - Mitigating Cyber Risks.pdfAWS Initiate Berlin - Security Sessions - Mitigating Cyber Risks.pdf
AWS Initiate Berlin - Security Sessions - Mitigating Cyber Risks.pdfAmazon Web Services
 
awsomedaymodules14gettingstartedwithaws161013161135convertedpptx__2022_01_10_...
awsomedaymodules14gettingstartedwithaws161013161135convertedpptx__2022_01_10_...awsomedaymodules14gettingstartedwithaws161013161135convertedpptx__2022_01_10_...
awsomedaymodules14gettingstartedwithaws161013161135convertedpptx__2022_01_10_...himanipatel524244
 
SRV203 Getting Started with AWS Lambda and the Serverless Cloud
SRV203 Getting Started with AWS Lambda and the Serverless CloudSRV203 Getting Started with AWS Lambda and the Serverless Cloud
SRV203 Getting Started with AWS Lambda and the Serverless CloudAmazon 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
 
Securing Media Content and Applications in the Cloud (MED401) | AWS re:Invent...
Securing Media Content and Applications in the Cloud (MED401) | AWS re:Invent...Securing Media Content and Applications in the Cloud (MED401) | AWS re:Invent...
Securing Media Content and Applications in the Cloud (MED401) | AWS re:Invent...Amazon Web Services
 
Security and Compliance Better on AWS_John Hildebrandt
Security and Compliance Better on AWS_John HildebrandtSecurity and Compliance Better on AWS_John Hildebrandt
Security and Compliance Better on AWS_John HildebrandtHelen Rogers
 
Build an App on AWS for Your First 10 Million Users
Build an App on AWS for Your First 10 Million UsersBuild an App on AWS for Your First 10 Million Users
Build an App on AWS for Your First 10 Million UsersAmazon Web Services
 
Day 1 - Introduction to Cloud Computing with Amazon Web Services
Day 1 - Introduction to Cloud Computing with Amazon Web ServicesDay 1 - Introduction to Cloud Computing with Amazon Web Services
Day 1 - Introduction to Cloud Computing with Amazon Web ServicesAmazon Web Services
 

Similar to Security & Governance on AWS – Better, Faster, and Cost Effective - Technical 201 (20)

Simplify & Standardise your migration to AWS with a Migration Landing Zone
Simplify & Standardise your migration to AWS with a Migration Landing ZoneSimplify & Standardise your migration to AWS with a Migration Landing Zone
Simplify & Standardise your migration to AWS with a Migration Landing Zone
 
Access Control for the Cloud: AWS Identity and Access Management (IAM) (SEC20...
Access Control for the Cloud: AWS Identity and Access Management (IAM) (SEC20...Access Control for the Cloud: AWS Identity and Access Management (IAM) (SEC20...
Access Control for the Cloud: AWS Identity and Access Management (IAM) (SEC20...
 
Accelerate your Cloud Success with Platform Services
Accelerate your Cloud Success with Platform ServicesAccelerate your Cloud Success with Platform Services
Accelerate your Cloud Success with Platform Services
 
Getting Started on AWS
Getting Started on AWSGetting Started on AWS
Getting Started on AWS
 
Technical Track
Technical TrackTechnical Track
Technical Track
 
Getting Started with AWS
Getting Started with AWSGetting Started with AWS
Getting Started with AWS
 
AWSome Day | Tech Track
AWSome Day | Tech TrackAWSome Day | Tech Track
AWSome Day | Tech Track
 
AWS Cloud Controls for Security - Usman Shakeel
AWS Cloud Controls for Security  - Usman ShakeelAWS Cloud Controls for Security  - Usman Shakeel
AWS Cloud Controls for Security - Usman Shakeel
 
AWS Services Overview and Quarterly Update - April 2017 AWS Online Tech Talks
AWS Services Overview and Quarterly Update - April 2017 AWS Online Tech TalksAWS Services Overview and Quarterly Update - April 2017 AWS Online Tech Talks
AWS Services Overview and Quarterly Update - April 2017 AWS Online Tech Talks
 
AWS Services Overview and Quarterly Update - April 2017 AWS Online Tech Talks
AWS Services Overview and Quarterly Update - April 2017 AWS Online Tech TalksAWS Services Overview and Quarterly Update - April 2017 AWS Online Tech Talks
AWS Services Overview and Quarterly Update - April 2017 AWS Online Tech Talks
 
AWS 101
AWS 101AWS 101
AWS 101
 
AWS Initiate Berlin - Security Sessions - Mitigating Cyber Risks.pdf
AWS Initiate Berlin - Security Sessions - Mitigating Cyber Risks.pdfAWS Initiate Berlin - Security Sessions - Mitigating Cyber Risks.pdf
AWS Initiate Berlin - Security Sessions - Mitigating Cyber Risks.pdf
 
awsomedaymodules14gettingstartedwithaws161013161135convertedpptx__2022_01_10_...
awsomedaymodules14gettingstartedwithaws161013161135convertedpptx__2022_01_10_...awsomedaymodules14gettingstartedwithaws161013161135convertedpptx__2022_01_10_...
awsomedaymodules14gettingstartedwithaws161013161135convertedpptx__2022_01_10_...
 
SRV203 Getting Started with AWS Lambda and the Serverless Cloud
SRV203 Getting Started with AWS Lambda and the Serverless CloudSRV203 Getting Started with AWS Lambda and the Serverless Cloud
SRV203 Getting Started with AWS Lambda and the Serverless Cloud
 
Secure your critical workload on AWS
Secure your critical workload on AWSSecure your critical workload on AWS
Secure your critical workload on AWS
 
Demystifying identity on AWS
Demystifying identity on AWSDemystifying identity on AWS
Demystifying identity on AWS
 
Securing Media Content and Applications in the Cloud (MED401) | AWS re:Invent...
Securing Media Content and Applications in the Cloud (MED401) | AWS re:Invent...Securing Media Content and Applications in the Cloud (MED401) | AWS re:Invent...
Securing Media Content and Applications in the Cloud (MED401) | AWS re:Invent...
 
Security and Compliance Better on AWS_John Hildebrandt
Security and Compliance Better on AWS_John HildebrandtSecurity and Compliance Better on AWS_John Hildebrandt
Security and Compliance Better on AWS_John Hildebrandt
 
Build an App on AWS for Your First 10 Million Users
Build an App on AWS for Your First 10 Million UsersBuild an App on AWS for Your First 10 Million Users
Build an App on AWS for Your First 10 Million Users
 
Day 1 - Introduction to Cloud Computing with Amazon Web Services
Day 1 - Introduction to Cloud Computing with Amazon Web ServicesDay 1 - Introduction to Cloud Computing with Amazon Web Services
Day 1 - Introduction to Cloud Computing with Amazon Web Services
 

More from 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
 

More from 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
 

Recently uploaded

Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersRaghuram Pandurangan
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Farhan Tariq
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demoHarshalMandlekar2
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
2024 April Patch Tuesday
2024 April Patch Tuesday2024 April Patch Tuesday
2024 April Patch TuesdayIvanti
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterMydbops
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPathCommunity
 
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...Wes McKinney
 
[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality Assurance[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality AssuranceInflectra
 
Testing tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesTesting tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesKari Kakkonen
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsNathaniel Shimoni
 
Potential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsPotential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsRavi Sanghani
 
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...AliaaTarek5
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Alkin Tezuysal
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxLoriGlavin3
 

Recently uploaded (20)

Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information Developers
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demo
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
2024 April Patch Tuesday
2024 April Patch Tuesday2024 April Patch Tuesday
2024 April Patch Tuesday
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL Router
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to Hero
 
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
 
[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality Assurance[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality Assurance
 
Testing tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesTesting tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examples
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directions
 
Potential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsPotential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and Insights
 
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
 

Security & Governance on AWS – Better, Faster, and Cost Effective - Technical 201

  • 1. ©  2016,  Amazon  Web  Services,  Inc.  or  its  Affiliates.  All  rights  reserved. Rodney  Haywood  – Senior  Manager,  Solutions  Architecture  A/NZ April  2016 Security  and  Governance  on  AWS Better,  Faster  and  Cost  Effective Technical  201
  • 2. "The  financial  services  industry  attracts  some  of  the  worst   cyber  criminals.  We  work  closely  with  AWS to  develop  a   security  model,  which  we  believe  enables  us  to  operate   more  securely  in  the  public  cloud  than  we  can  in  our  own   data  centers.” Rob  Alexander,  CIO,  Capital  One
  • 4. How  Might  AWS  be   Better?
  • 6. A  High  Pace  of  Innovation
  • 7. Services 2009 Amazon  RDS Amazon  VPC AWS  Auto  Scaling AWS  Elastic   Load Balancing 2010 Amazon  SNS AWS  Identity   &  Access   Management Amazon   Route  53 2011 Amazon   ElastiCache Amazon  SES AWS   CloudFormation AWS  Direct   Connect AWS  Elastic   Beanstalk GovCloud 2012 Amazon  SWF Amazon   Redshift Amazon   Glacier Amazon   Dynamo  DB Amazon   CloudSearch AWS  Storage Gateway AWS  Data   Pipeline 2013 Amazon   CloudTrail Amazon   CloudHSM Amazon   WorkSpaces Amazon   Kinesis Amazon  Elastic Transcoder Amazon   AppStream AWS  OpsWorks 2014 AWS  KMS Amazon  Config Amazon  Cognito Amazon  Mobile   Analytics   Amazon  EC2 Container  Service Amazon  RDS  for   Aurora Amazon  Lambda Amazon  WorkDocs AWS  Directory   Service AWS  CodeCommit AWS  CodePipeline 2015 Amazon  EFS Amazon  API  Gateway Amazon  WorkMail Amazon  Machine   Learning AWS  Device   Farm AWS  WAF Amazon   Elasticsearch Service Amazon  QuickSight AWS  Import/Export   Snowball Amazon  Kinesis   Firehose Amazon  RDS  for  MariaDB Amazon  Inspector AWS  Database   Migration Service   AWS  IoT Amazon  EC2  Container Registry Amazon  Kinesis   Analytics AWS  Mobile  Hub *  As  of  30  Nov  15 AWS  EMR Amazon  CloudWatch Amazon  FPS AWS  Import/Export Trusted  Advisor AWS  Service   Catalog AWS  CodeDeploy Amazon  CloudWatch  Logs
  • 8. Security  Services 2009 Amazon  RDS Amazon  VPC AWS  Auto  Scaling AWS  Elastic   Load Balancing 2010 Amazon  SNS AWS  Identity   &  Access   Management Amazon   Route  53 2011 Amazon   ElastiCache Amazon  SES AWS   CloudFormation AWS  Direct   Connect AWS  Elastic   Beanstalk GovCloud 2012 Amazon  SWF Amazon   Redshift Amazon   Glacier Amazon   Dynamo  DB Amazon   CloudSearch AWS  Storage Gateway AWS  Data   Pipeline 2013 Amazon   CloudTrail Amazon   CloudHSM Amazon   WorkSpaces Amazon   Kinesis Amazon  Elastic Transcoder Amazon   AppStream AWS  OpsWorks 2014 AWS  KMS Amazon  Config Amazon  Cognito Amazon  Mobile   Analytics   Amazon  EC2 Container  Service Amazon  RDS  for   Aurora Amazon  Lambda Amazon  WorkDocs AWS  Directory  Service AWS  CodeCommit AWS  CodePipeline 2015 Amazon  EFS Amazon  API  Gateway Amazon  WorkMail Amazon  Machine   Learning AWS  Device   Farm AWS  WAF Amazon   Elasticsearch Service Amazon  QuickSight AWS  Import/Export   Snowball Amazon  Kinesis   Firehose Amazon  RDS  for  MariaDB Amazon  Inspector AWS  Database   Migration Service   AWS  IoT Amazon  EC2  Container Registry Amazon  Kinesis   Analytics AWS  Mobile  Hub *  As  of  30  Nov  15 AWS  EMR Amazon  CloudWatch Amazon  FPS AWS  Import/Export Trusted  Advisor AWS  Service   Catalog AWS  CodeDeploy Amazon  CloudWatch  Logs
  • 9. Security  Features 0% 5% 10% 15% 20% 25% 30% 35% 40% 0 100 200 300 400 500 600 700 800 2008 2009 2010 2011 2012 2013 2014 2015 Security  Features All  Significant  Features  and  Services Percent
  • 11. AWS  Identity  and  Access   Management Authenticate Authorize Username  /  Password Access  Key  /  Secret  Key Federation Temporary  Credentials Cross  Account Policies • Action • Resource • Condition
  • 12. { "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "ec2:AttachVolume", "ec2:DetachVolume" ], "Resource": "arn:aws:ec2:ap-southeast-2:ACCOUNT-ID-WITHOUT-HYPHENS:instance/*", "Condition": {"StringEquals": {"ec2:ResourceTag/department": "dev"}} }, { "Effect": "Allow", "Action": [ "ec2:AttachVolume", "ec2:DetachVolume" ], "Resource": "arn:aws:ec2:ap-southeast-2:ACCOUNT-ID-WITHOUT-HYPHENS:volume/*", "Condition": {"StringEquals": {"ec2:ResourceTag/volume_user": "${aws:username}"}} } ] }
  • 13. AWS  Identity  and  Access   Management Authenticate Authorize Audit Username  /  Password Access  Key  /  Secret  Key Federation Temporary  Credentials Cross  Account Policies • Action • Resource • Condition AWS  CloudTrail Record  of  API  calls
  • 14. Visibility “You  can’t  secure  what  you  don’t  know  about.”
  • 15. What  Assets do  I  Have? View  Current  Assets  via  Multiple  Interfaces   • AWS  Management  Console • AWS  SDKs • AWS  CLI • Windows  PowerShell
  • 16. What  Instances  do  I  Have  in  a  Region? AWS  SDK  for  Ruby #!/usr/bin/ruby require 'rubygems’; require 'aws-sdk' AWS.regions['ap-southeast-2'].ec2.instances.each do |instance| puts instance.id end OUTPUT i-9e47d6a1 i-93eb2cad i-9bc1b747 i-5085ef8c i-49739697 AWS  CLI $aws ec2 describe-instances --query "Reservations[*].Instances[*].InstanceId" --output text
  • 17. What  Access  is  Occurring? AWS  CloudTrail • Records  AWS  API  to  S3  giving  you  a  history • Includes  the  identity,  time  and  source  IP  address  of   the  API  caller.  Request  Parameters and  the  Response elements  returned • Enables  security  analysis,  resource  change  tracking,   and  compliance  auditing • Optionally  encrypted  with  your  AWS  KMS  key   • Optional  Log  File  Integrity  Validation
  • 18.
  • 19. Is  Access  and  Permission  Being  Used? • IAM  Password  &  IAM  Access  Key  last  used  details • IAM  Access  Advisor
  • 20.
  • 21.
  • 22. What  Activity  is  Occurring? AWS  CloudWatch  Events • Near  real-­time  stream  of  system  events  that  describe   changes  in  AWS  resources • Supported  events  include  console  login,  auto  scaling,   instance  state  change,  an  API  call  or  a  schedule • Triggers  to  Lambda  function,  SNS  topic,  SQS  queue,   Kinesis  stream  or  built-­in  functions
  • 23. Creating  a  CloudWatch  Event  to  notify  on  login
  • 24. Receiving  a  CloudWatch  Event  for  an  API  call { "detail-type": "AWS API Call via CloudTrail", "source": "aws.cloudformation", "time": "2016-04-21T07:37:57Z", "region": "ap-southeast-2", "detail": { "userIdentity": { "type": "IAMUser", "userName": "rodosadmin", "sessionContext": { "attributes": { "mfaAuthenticated": "true", "creationDate": "2016-04-21T01:55:06Z" } }, }, "eventSource": "cloudformation.amazonaws.com", "eventName": "CreateStack", "awsRegion": "ap-southeast-2", "sourceIPAddress": "144.132.157.178", "requestParameters": { "stackName": "CoffeeShop", "parameters": [...], "templateURL": "http://s3-ap-southeast- 2.amazonaws.com/my.template", "tags": [], "disableRollback": false, }, "responseElements": { "stackId": "arn:aws:cloudformation:ap- southeast- 2:518127492581:stack/CoffeeShop/f7550530-0793- 11e6-bb66-50fae957fce6" }, } }
  • 25. What  Network  Activity  is  Occurring? • VPC  Flow  Logs Capture  IP  traffic  information  to  &  from  VPC  interfaces • AWS  Web  Application  Firewall Improve  web  traffic  visibility  to  monitor  requests  that   match  your  security  filter  criteria
  • 26. What  Activity Occurred? AWS  Config A  fully  managed  service  that  provides  you  with  an  AWS   resource  inventory,  configuration  history,  and   configuration  change  notifications  to  enable  security  and   governance.   • Supports  EC2,  IAM  and  CloudTrail • Interactive  view  in  AWS  Management  Console • History  files  stored  in  S3 • Send  change  events  to  an  SNS  topic
  • 27.
  • 28.
  • 29.
  • 30. How  Might  AWS  Be   Faster?
  • 32. Audits,  Accreditations  and  Certifications • Independent  3rd party  assessors  review  and  validate  AWS  internal  controls • Audit  reports  (such  as  SOC1  &  SOC2)  are  available  under  NDA.   • You  can  review  the  control  results  and  auditor  notes. • You  can  take  comfort  that  the  controls  have  been  appropriately   implemented  and  are  operating  effectively.
  • 33. AWS  Foundation  Services AWS  Global   Infrastructure Your  own   accreditation Start  with   services Your  own   certifications Your  own   external  audits Built  on  AWS   consistent baseline  of   validated  controls Customer  scope  and   effort  is  reduced Better  results  through   focused  efforts
  • 34. Shared  Responsibility  across  Deployment  Models Infrastructure   Services Container  Services Abstract  Services Customer  IAM AWS  IAM Networking/Firewall Data Applications Operating  System Networking/Firewall Data Customer  IAM AWS  IAM AWS  Foundation   Services AWS  Global   Infrastructure AWS  Foundation   Services AWS  Global   Infrastructure Applications Operating  System AWS  Foundation   Services AWS  Global   Infrastructure Applications Operating  System Networking/Firewall AWS  IAM Data Customer  IAM Customers AWS AWS AWS Customers Amazon   EC2 Amazon RDS Amazon   Redshift Elastic  Load   Balancing Amazon DynamoDB Amazon S3 Amazon   Kinesis Customers
  • 36. Automation • Completely  API  driven • Execute  faster,  remediate  faster • Build  more  resilient  processes • Complete  traceability Lower  automation  results  in  longer  planning   cycles  and  more  complex  manual  processes,   which  reduces  speed  and  reliability. Environment  Lifecycle Event  Response driving
  • 37. An  Ecosystem  of   Innovators
  • 38. https://github.com/awslabs/aws-­config-­rules/ A  Community  – Based  Source  of  Custom  Rules  for  AWS   Config For  example 23.  Ensure  that  no  users  have  password  policy  requirements  weaker  than   specified. 24.  Ensure  that  no  users  have  access  keys  that  have  never  been  used. 25.  Ensure  that  there  are  no  users  that  have  never  been  logged  in.
  • 39. AWS  Foundations  Benchmark A set  of  security   configuration  best   practices  for  AWS.   Providing  AWS  users  with   clear,  step-­by-­step   implementation  and   assessment  procedures.  
  • 40.
  • 41. Cloud  Custodian  is  a  rules  engine  for  AWS  resource  management.  It  allows  users  to  define   policies  to  be  enforced to  enable  a  well  managed  cloud,  with  metrics  and  structured  outputs.   It  consolidates  many  of  the  adhoc scripts  organizations  have  into  a  lightweight  and  flexible   tool. Organizations  can  use  Custodian  to  manage  their  AWS  environments  by  ensuring   compliance  to  security  policies,  tag  policies,  garbage  collection  of  unused  resources,  and   cost  management  via  off-­hours  resource  management. Cloud  Custodian
  • 42. How  Might  AWS  be   Lower  Cost?
  • 43. Commodity  Pricing Amazon   CloudWatch AWS CloudTrail AWS Config AWS  WAFAWS  Directory   Service AWS  KMS VPN   Connection AWS CloudHSM Amazon   VPC AWS CloudFormation AWS  IAM MFA   token EBS   Encryption Eligible  Free  Tier  /  Trial Pay  for  Use Free Amazon   Inspector
  • 44. Listings  for  “security”   products  in  the  Sydney   region. • 844  in  total • 102  with  a  4★ rating • 36  launch  CloudFormation
  • 46. Framework  for   Modernising Security   Governance.
  • 47. 1st Line  of  Defense 2nd Line  of  Defense 3rd Line  of  Defense Three  Lines  of  Defense Operations Supervision Evaluation
  • 48. 1st Line  of  Defense 2nd Line  of  Defense 3rd Line  of  Defense Management   Controls Internal   Control   Measures Internal  Audit Financial  Control Security Risk  Management Quality Inspection Compliance Three  Lines  of  Defense  – Responsibilities   Operations Supervision Evaluation
  • 49. 1st Line  of  Defense 2nd Line  of  Defense 3rd Line  of  Defense Controls • Transparency • Log  Processing • Policy  Review • Separation  of  Duties   • Account  Governance • Event  Review Controls • Configuration   Controls • Authorisation Controls • Change  Controls • Logging  &  Integrity  Controls • Policy  Controls • Policy  Violation   Controls Three  Lines  of  Defense  – Applicable  Controls Controls • Network  Controls • Access  Controls • Traceability  Controls • Encryption  Controls • Awareness  and  Response   Controls Operations Supervision Evaluation
  • 50. 1st Line  of  Defense 2nd Line  of  Defense 3rd Line  of  Defense AWS  Applicable  ServicesAWS  Applicable  Services Three  Lines  of  Defense  – AWS  Services AWS  Applicable  Services Amazon   VPC AWS  IAM AWS  KMS Amazon   CloudWatch Amazon   CloudWatch AWS Config AWS CloudTrail AWS CloudFormation AWS CloudTrail Permissions Amazon SNS Amazon   Inspector AWS Config Amazon  S3Marketplace Operations Supervision Evaluation AWS  Trusted   Advisor
  • 51. 3 Lines  of  Defense  Example Control  :  Are  policies  enforced? Enforcement  :  Configuration  Management
  • 52. 1st Line  of  Defense  (Operations)  :  Configuration  Management CloudFormation template Admin Define AWS Service Catalog Publish CloudFormation stack Users Browse  and  Launch Provisions
  • 53. 2nd Line  of  Defense  (Supervision)  -­ Configuration  Monitoring CloudFormation template Admin Define AWS Service Catalog Publish CloudFormation stack Users Browse  and  Launch AWS Config Provisions AWS Config rules
  • 54. 3rd Line  of  Defense  (Evaluation)  -­ Configuration  Log  Testing CloudFormation template Admin Define AWS Service Catalog Publish CloudFormation stack Users Browse  and  Launch AWS Config Provisions AWS Config rules AWS CloudTrail Amazon S3
  • 55. 1st Line  of  Defense 2nd Line  of  Defense 3rd Line  of  Defense Three  Lines  of  Defense  Risk  Management     INFRASTRUCTURE   AS  CODE AUTOMATE   COMPLIANCE TOTAL   TRANSPARENCY Operations Supervision Evaluation
  • 57. Aaron  McKeown,  Lead  Security  Architect,  Xero Cloud  Security  @  Xero
  • 58. Beautiful  cloud-­based  accounting  software  connecting  people   with  the  right  numbers  anytime,  anywhere,  on  any  device
  • 59. subscribers 600,000 474Mraised  in  capital $ transactions  processed   in  past  12  mths 356B$ + 23Mbusinesses  have  interacted   on  the  Xero  platform + 215Minvoices  in  past  12  mths + 1300staff  globally + All  figures  shown  are  in  NZD subscription  revenue   FY15 121M$ +
  • 60. Improving  data   protection Eliminating   scheduled   downtime Maintaining   and  improving   our  security Support  the  next   wave  of  growth Reducing  our  per   customer  cost Public  cloud  migration
  • 61. Repeatable  and  Automated   build  and  management  of   Security  Systems Accelerated  pace  of   security  innovation On-­Demand  security   infrastructure  that  works  at   any  scale Key  Principles
  • 62. VPN   connectivity Host  Based   Security Web  Application   Security  and   Delivery Shared  Key   Management   Services Security   Operations  and   Consulting   Services Secure   Bastion   Access Proxy  Services Security  as  a  Service
  • 63. Security  by  Design  -­ What's  that? Communication  is  Key  -­ Who  are  your   spokespeople?   Measure  and  Test,   Monitor  Everything   Welcome  to  the  cloud  -­ "Where's  my  span  port"? Key  Learnings
  • 64. Repeatable  and  Automated   build  and  management  of   Security  Systems Accelerated  pace  of   security  innovation On-­Demand  security   infrastructure  that  works   at  any  scale Final  Takeaways
  • 66. Additional  AWS  Security  and  Compliance  Resources http://aws.amazon.com/security http://aws.amazon.com/compliance http://aws.amazon.com/compliance/#whitepapers https://aws.amazon.com/compliance/compliance-­enablers/ http://aws.amazon.com/documentation   http://aws.amazon.com/iam https://www.youtube.com/user/AmazonWebServices https://aws.amazon.com/blogs/aws/new-­aws-­security-­courses/ awscompliance@amazon.com  
  • 67. AWS  Training  &  Certification Intro  Videos  &  Labs   Free  videos  and  labs  to   help  you  learn  to  work   with  30+  AWS  services   – in  minutes! Training  Classes In-­person  and  online   courses  to  build   technical  skills  – taught  by  accredited   AWS  instructors Online  Labs   Practice  working  with   AWS  services  in  live   environment  – Learn  how  related   services  work   together AWS  Certification Validate  technical   skills  and  expertise  – identify  qualified  IT   talent  or  show  you   are  AWS  cloud  ready Learn  more:  aws.amazon.com/training
  • 68. Your  Training  Next  Steps: ü Visit  the  AWS  Training  &  Certification  pod  to  discuss  your   training  plan  &  AWS  Summit  training  offer ü Register  &  attend  AWS  instructor  led  training ü Get  Certified AWS  Certified?  Visit  the  AWS  Summit  Certification  Lounge  to  pick  up  your  swag Learn  more:  aws.amazon.com/training