SlideShare una empresa de Scribd logo
1 de 36
Descargar para leer sin conexión
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
AWS re:INVENT
C a s e S t u d y : H o w M o b i l e D e v i c e S e r v i c e C o m p a n y
A s u r i o n A r c h i t e c t e d I t s A p p l i c a t i o n o n A W S E d g e
f o r S p e e d a n d S e c u r i t y
J a b e z A b r a h a m , C l o u d S e c u r i t y A r c h i t e c t , A s u r i o n
N o v e m b e r 2 8 , 2 0 1 7
For over 20 years, Asurion has helped people across the globe balance the
interdependency between life and technology. Today, as the industry-defining leader
of technology solutions, we ensure 300 million consumers’ devices and appliances
stay online and on the job in this fast moving, tech-driven world.
Asurion ensures technology and people are
harmonious. And your life is in balance.
We do so across the digitally connected
globe, by speaking six languages, and by
working across any device, platform or
provider.
We do this in 50 offices around the world, with
our global headquarters in Nashville, TN, our
Asia Pacific HQ in Singapore, and our European
HQ in London.
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Device Protection
Coverage for loss, theft,
damage, and out of warranty
malfunction, for single or
multiple devices
Premier Tech Help
Soluto offers 100% access to
a tech expert, to solve any
technology issue across OS
systems and platforms.
Electronics Protection
Coverage for computers,
laptops, tablets, gaming
consoles, entertainment
system, televisions and home
phones of any age, brand or
size
What we do
We are the trusted partner to some of the biggest
retailers, manufacturers and service providers in the world
Together we offer best in class:
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Agenda
1.Layered Methodology
2.All in AWS Edge
3.Demo
4.Implementation Patterns
5.Dos and Don’ts
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Setting the Stage
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Network Layer
Amazon CloudFront, Amazon Route 53, Elastic Load Balancing, Amazon Virtual Private
Cloud (Amazon VPC), AWS Direct Connect or VPN, ingress and egress, Routing
Layered Methodology
Content
Network
SecurityContent Layer
Origin Mapping, A/B, Blue/Green, Dynamic Queries, Caching,
Streaming
Security Layer
DDoS, WAF, Origin Access Identity, TLS, Custom Certs, Regulatory Requirements
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Hybrid Dependencies
L a y e r e d
M e t h o d o l o g y
Content
Network
Security
Network Layer
Hardcoded IPs for On-Premises dependencies
A/B routing for same Origin
Blue/Green routing for Canary
deployments
Internal vs. External facing Applications
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Site Maintenance with Lambda@edge
Content
Network
Security
Content Layer
Origin Mapping
Forward Dynamic Queries
Referrer header for WordPress
Cache invalidation
Costing for CloudFront traffic
L a y e r e d
M e t h o d o l o g y
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Custom Header for securing approved traffic
Content
Network
Security
Security Layer
CloudFront Security Group
Custom Auth. with IP whitelisting
All sensitive information encrypted using KMS and stored in
config
Custom Certs
Dedicated IPs/SNI
L a y e r e d
M e t h o d o l o g y
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Regulatory Considerations
Retaining Logs
Geo Location lockdown
Reduce compliance scope
Disable Caching on sensitive forms
Encryption Standards
SOC2 Compliance report
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
All in AWS Edge | Core Focus
1. Content Delivery
2. Endpoint Protection
3. Serverless Architectures
4. Cost Effective
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
All in AWS Edge
1.Pre-migration strategy
2.Deep Dive Analysis
3.Roles and Responsibilities
4.External Requirements
5.Operational Uplift
6.Training
7.Migration
8.Post Migration
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Pre-Migration strategy
1.Time to Market
2.Security considerations
3.Sites already deployed in AWS
4.On-Premises dependencies
5.Cost
A l l i n A W S E d g e
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Deep Dive Analysis
1.Architecture reviews
2.Caching requirements
3.Origin requirements
4.Development team impact
5.Support impact
6.A/B and Blue/Green requirements
7.Origin cloaking
A l l i n A W S E d g e
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Roles and Responsibilities
1.DDoS vs. WAF
2.Who manages what
3.Active mitigation
4.Service Governance
5.DRT team
6.Cadence calls
A l l i n A W S E d g e
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
External Requirements
1.Business priorities
2.License impact for renewals
3.Internal vetting of our processes
Operational Uplift
1.Security Operations monitoring
2.New WAF rules
3.Monitoring and mitigating threats
A l l i n A W S E d g e
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Training
1.Internal team Dynamics
2.DevOps impact on deployments
3.Functional and performance testing
4.Center of Excellence
5.Architecture impact on teams
A l l i n A W S E d g e
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Migration
1.Running in parallel
2.RFC and Switch over
3.Domain name and Custom certs
4.Migration Strategies
Post Migration
1.Incident Post-Mortems
2.Ongoing monitoring
3.Updates and iterative enhancements
A l l i n A W S E d g e
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Web Architecture Implementation
corporatedatacenter
Users
Multi-Path Routing
- rules engine
- hosted site
weighted TXT
record sets
A/B Routing
Blue/Green Routing
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Multi-Path Routing Use Case
o R e v e r s e P r o x y u s i n g L a m b d a @ e d g e
o R o u t i n g b e t w e e n A W S a n d O n -
P r e m i s e s
o A b s t r a c t r u l e s i n t o a n i s o l a t e d S 3
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
'use strict';
function getSiteVal (params){
return new Promise (function (resolve, reject) {
const http = require('http');
var options = {
host: 'd6e71f08bk8tj.cloudfront.net',
port: 80,
path: ’/siteinfo.json',
method: 'GET'
};
var req = http.request(options,function(res){
res.on('data', chunk => {
console.log(`site information "${chunk}"`);
resolve(chunk);
});
});
req.on('error', function(e) {
console.log('problem with request: ' + e.message);
});
req.end();
});
}
exports.handler = (event, context, callback) => {
const request = event.Records[0].cf.request;
getSiteVal().then(function (data) {
var value = JSON.parse(data);
console.log('Value of passed data ' + JSON.stringify(value));
console.log('Value of request uri ' + request.uri);
CODE SNIPPET | Multi-Path Routing
if(value.hasOwnProperty(request.uri)) {
var picked = value[request.uri];
console.log ('Value of picked ' + picked);
if (picked[0] === 1) {
request.uri = picked[1];
console.log('Value of internal loop ' + request.uri);
callback(null, request);
return;
} else if (picked[0] === 2); {
const response = {
status: '302',
statusDescription: 'Found',
headers: {
location: [{
key: 'Location',
value: picked[1],
}],
},
};
console.log('Value of external loop ' + JSON.stringify(response));
callback(null, response);
return;
}
} else {
request.uri = value["/other"][1];
console.log('Value of other loop ' + request.uri);
callback(null, request);
}
});
};
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
CloudWatch logs
M u l t i - P a t h R o u t i n g
{
"/":[1,"/index.html"],
"/hpath":[1,"/cloud.html"],
"/mpath":[2,"https://s3.amazonaws.com/logix.d2/maint.html"]
"/epath":[2,"https://logix.link"],
"/other":[1,"/404error.html"],
"/old.html":[1,"/old/old.html"],
}
siteinfo.json
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Path Pattern redirection
'use strict';
exports.handler = (event, context, callback) => {
const request = event.Records[0].cf.request;
request.uri = request.uri.replace(/^/alb//g, '/');;
console.log(`Request uri set to "${request.uri}"`);
callback(null, request);
};
CloudWatch logs
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
A/B Use Case
o A b s t r a c t % a n d a p p p a t h a t t h e o r i g i n
o R o u t e 5 3 T X T r e c o r d s e t
o M u l t i p l e v e r s i o n d e p l o y e d t o t h e s a m e
o r i g i n
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
'use strict';
function getRoute53val (params){
return new Promise (function (resolve, reject) {
var dnstxt = require('dns');
dnstxt.resolveTxt("ab.logix.link",function(err,res) {
if (err) { console.log('There was an error reading the record', err);
return; }
console.log('Value of first loop' + JSON.stringify(res));
resolve(JSON.stringify(res));
});
});
}
CODE SNIPPET | A/B
exports.handler = (event, context, callback) => {
const request = event.Records[0].cf.request;
if (request.uri !== '/') {
// not an A-B testing
callback(null, request);
return;
}
getRoute53val().then(function (data) {
var value = JSON.parse(data);
console.log('Value of passed data ' + value);
request.uri = value[0][0];
console.log(`Request uri set to "${request.uri}"`);
callback(null, request);
});
};
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Blue/Green & Session Mgmt.
o U s e P e r s i s t e n c e C o o k i e f o r m a n a g i n g s e s s i o n
o A p p l i c a t i o n d e p e n d e n c y f o r C o o k i e
Blue/Green Use Case
o A b s t r a c t % a n d a p p p a t h a t t h e o r i g i n
o R o u t e 5 3 T X T r e c o r d s e t
o R e s t r i c t a c c e s s t o L a m b d a f o r o p s
o C a n a r y d e p l o y m e n t s w i t h m u l t i p l e o r i g i n s
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
'use strict';
function getRoute53val (params){
return new Promise (function (resolve, reject) {
var dnstxt = require('dns');
dnstxt.resolveTxt("bg.logix.link",function(err,res) {
if (err) { console.log('There was an error reading the record', err);
return; }
console.log('Value of first loop' + JSON.stringify(res));
resolve(JSON.stringify(res));
});
});
}
exports.handler = (event, context, callback) => {
const request = event.Records[0].cf.request;
if (request.uri === '/blue' || request.uri === '/green') {
// in proper path
callback(null, request);
return;
}
getRoute53val().then(function (data) {
var value = JSON.parse(data);
console.log('Value of passed data ' + value);
console.log('Value of request uri ' + request.uri);
CODE SNIPPET | B/G
let url = 'https://bg.logix.link';
url = url + value[0][0] + request.uri;
console.log ('Value of url ' + url);
const response = {
status: '302',
statusDescription: 'Found',
headers: {
location: [{
key: 'Location',
value: url,
}],
},
};
callback(null, response);
});
};
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
'use strict';
function getRoute53val (params){
return new Promise (function (resolve, reject) {
var dnstxt = require('dns');
dnstxt.resolveTxt("bgp.logix.link",function(err,res) {
if (err) { console.log('There was an error reading the record', err);
return; }
console.log('Value of first loop' + JSON.stringify(res));
resolve(JSON.stringify(res));
});
});
}
exports.handler = (event, context, callback) => {
const request = event.Records[0].cf.request;
const headers = request.headers;
const cookiePersistB = 'Persistence=Blue';
const cookiePersistG = 'Persistence=Green';
let pathUri;
if (headers.cookie) {
for (let i = 0; i < headers.cookie.length; i++) {
if (headers.cookie[i].value.indexOf(cookiePersistB) >= 0) {
console.log('Persistent Blue cookie found');
pathUri = '/blue';
break;
} else if (headers.cookie[i].value.indexOf(cookiePersistG) >= 0) {
console.log('Persistent Green cookie found');
pathUri = '/green';
break;
}
}
CODE SNIPPET | B/G and Session Mgmt.
request.uri = pathUri + request.uri;
console.log(`In cookie loop. Request uri set to "${request.uri}"`);
callback(null, request);
} else if (!pathUri) {
console.log('Persistent cookie has not been found. Checking Route53');
getRoute53val().then(function (data) {
var value = JSON.parse(data);
console.log('Value of passed data ' + value);
let url = 'https://bgp.logix.link';
url = url + value[0][0] + request.uri;
console.log ('Value of url ' + url);
const response = {
status: '302',
statusDescription: 'Found',
headers: {
location: [{
key: 'Location',
value: url,
}],
},
};
callback(null, response);
});
}
};
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Route 53 setting
CloudWatch logs
A/B
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
CloudWatch logs
B / G w i t h C o o k i e
B / G w i t h o u t C o o k i e
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Implementation PatternsNetworkCentricPattern
Users
weighted record sets
app.example53.com
- blue-elb : 50
- green-elb : 50
app.example.com
CNAME: app.example53.com
M a n a g i n g D N S d e p e n d e n c y
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Implementation PatternsContentCentricPattern
Users
maintenance
viewerrequest
M a n a g i n g c o n t e n t
r o u t i n g
corporatedatacenter
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Implementation PatternsSecurityCentricPattern
Approved
Users
governance
lambda
External
Users
custom Auth +
IP validation
API key
A P I s f o r i n t e r n a l u s e r s
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
o Buy in from Internal Security
teams
o Layered Security Model
o Layer AWS compliance reports
with your controls
o Training and enabling
Development for faster
adoption
o Build RACI matrix for ownership
o Multi-vendor Network hops
o Open Security Groups
o Expect the same visibility as a
traditional on-premises service
o Lift and Shift to AWS could be
cost prohibitive
o Self-Signed Certificates
Dos and Don’ts
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Layered Methodology
Benefits, Business Process, Contractual and Regulatory requirements
Recap
Content
Network
SecurityAll in AWS EDGE
Migration Strategies, Shield+, Proactive vs. Reactive vs. Preventive
Implementation Patterns
Content Layer, Network layer, Security Layer, Dos and Don’ts
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Thank you!

Más contenido relacionado

La actualidad más candente

Taking DevOps Closer to the AWS Edge - CTD401 - re:Invent 2017
Taking DevOps Closer to the AWS Edge - CTD401 - re:Invent 2017Taking DevOps Closer to the AWS Edge - CTD401 - re:Invent 2017
Taking DevOps Closer to the AWS Edge - CTD401 - re:Invent 2017Amazon Web Services
 
Learn How AWS is Enabling the World's Most Advanced Media Workflows - CTD202 ...
Learn How AWS is Enabling the World's Most Advanced Media Workflows - CTD202 ...Learn How AWS is Enabling the World's Most Advanced Media Workflows - CTD202 ...
Learn How AWS is Enabling the World's Most Advanced Media Workflows - CTD202 ...Amazon Web Services
 
STG330_Case Study How Experian Leverages Amazon EC2, EBS, and S3 with Clouder...
STG330_Case Study How Experian Leverages Amazon EC2, EBS, and S3 with Clouder...STG330_Case Study How Experian Leverages Amazon EC2, EBS, and S3 with Clouder...
STG330_Case Study How Experian Leverages Amazon EC2, EBS, and S3 with Clouder...Amazon Web Services
 
DEV329_Cisco’s Journey from Monolith to Microservices
DEV329_Cisco’s Journey from Monolith to MicroservicesDEV329_Cisco’s Journey from Monolith to Microservices
DEV329_Cisco’s Journey from Monolith to MicroservicesAmazon Web Services
 
NET302_Global Traffic Management with Amazon Route 53
NET302_Global Traffic Management with Amazon Route 53NET302_Global Traffic Management with Amazon Route 53
NET302_Global Traffic Management with Amazon Route 53Amazon Web Services
 
DAT320_Moving a Galaxy into Cloud
DAT320_Moving a Galaxy into CloudDAT320_Moving a Galaxy into Cloud
DAT320_Moving a Galaxy into CloudAmazon Web Services
 
DEV206_Life of a Code Change to a Tier 1 Service
DEV206_Life of a Code Change to a Tier 1 ServiceDEV206_Life of a Code Change to a Tier 1 Service
DEV206_Life of a Code Change to a Tier 1 ServiceAmazon Web Services
 
CTD201_Introduction to Amazon CloudFront and AWS Lambda@Edge
CTD201_Introduction to Amazon CloudFront and AWS Lambda@EdgeCTD201_Introduction to Amazon CloudFront and AWS Lambda@Edge
CTD201_Introduction to Amazon CloudFront and AWS Lambda@EdgeAmazon Web Services
 
DAT341_Working with Amazon ElastiCache for Redis
DAT341_Working with Amazon ElastiCache for RedisDAT341_Working with Amazon ElastiCache for Redis
DAT341_Working with Amazon ElastiCache for RedisAmazon Web Services
 
CTD302_How Hulu reinvented Television using the AWS Cloud
CTD302_How Hulu reinvented Television using the AWS CloudCTD302_How Hulu reinvented Television using the AWS Cloud
CTD302_How Hulu reinvented Television using the AWS CloudAmazon Web Services
 
Interstella 8888: Advanced Microservice Operations - CON407 - re:Invent 2017
Interstella 8888: Advanced Microservice Operations - CON407 - re:Invent 2017Interstella 8888: Advanced Microservice Operations - CON407 - re:Invent 2017
Interstella 8888: Advanced Microservice Operations - CON407 - re:Invent 2017Amazon Web Services
 
STG316_Optimizing Storage for Big Data Workloads
STG316_Optimizing Storage for Big Data WorkloadsSTG316_Optimizing Storage for Big Data Workloads
STG316_Optimizing Storage for Big Data WorkloadsAmazon Web Services
 
DEV333_Using Amazon CloudWatch for Amazon ECS Resource Monitoring at Scale
DEV333_Using Amazon CloudWatch for Amazon ECS Resource Monitoring at ScaleDEV333_Using Amazon CloudWatch for Amazon ECS Resource Monitoring at Scale
DEV333_Using Amazon CloudWatch for Amazon ECS Resource Monitoring at ScaleAmazon Web Services
 
STG203_Get Rid of Tape and Modernize Backup with AWS
STG203_Get Rid of Tape and Modernize Backup with AWSSTG203_Get Rid of Tape and Modernize Backup with AWS
STG203_Get Rid of Tape and Modernize Backup with AWSAmazon Web Services
 
CTD303_Korea’s Largest OTT provider
CTD303_Korea’s Largest OTT providerCTD303_Korea’s Largest OTT provider
CTD303_Korea’s Largest OTT providerAmazon Web Services
 
CTD406_Measuring the Internet in Real Time
CTD406_Measuring the Internet in Real TimeCTD406_Measuring the Internet in Real Time
CTD406_Measuring the Internet in Real TimeAmazon Web Services
 
DEV203_Launch Applications the Amazon Way
DEV203_Launch Applications the Amazon WayDEV203_Launch Applications the Amazon Way
DEV203_Launch Applications the Amazon WayAmazon Web Services
 
GPSTEC324_STORAGE FOR HPC IN THE CLOUD
GPSTEC324_STORAGE FOR HPC IN THE CLOUDGPSTEC324_STORAGE FOR HPC IN THE CLOUD
GPSTEC324_STORAGE FOR HPC IN THE CLOUDAmazon Web Services
 
STG329_ProtectWise optimizes performance of Cassandra and Kafka workloads wit...
STG329_ProtectWise optimizes performance of Cassandra and Kafka workloads wit...STG329_ProtectWise optimizes performance of Cassandra and Kafka workloads wit...
STG329_ProtectWise optimizes performance of Cassandra and Kafka workloads wit...Amazon Web Services
 
MCL310_Building Deep Learning Applications with Apache MXNet and Gluon
MCL310_Building Deep Learning Applications with Apache MXNet and GluonMCL310_Building Deep Learning Applications with Apache MXNet and Gluon
MCL310_Building Deep Learning Applications with Apache MXNet and GluonAmazon Web Services
 

La actualidad más candente (20)

Taking DevOps Closer to the AWS Edge - CTD401 - re:Invent 2017
Taking DevOps Closer to the AWS Edge - CTD401 - re:Invent 2017Taking DevOps Closer to the AWS Edge - CTD401 - re:Invent 2017
Taking DevOps Closer to the AWS Edge - CTD401 - re:Invent 2017
 
Learn How AWS is Enabling the World's Most Advanced Media Workflows - CTD202 ...
Learn How AWS is Enabling the World's Most Advanced Media Workflows - CTD202 ...Learn How AWS is Enabling the World's Most Advanced Media Workflows - CTD202 ...
Learn How AWS is Enabling the World's Most Advanced Media Workflows - CTD202 ...
 
STG330_Case Study How Experian Leverages Amazon EC2, EBS, and S3 with Clouder...
STG330_Case Study How Experian Leverages Amazon EC2, EBS, and S3 with Clouder...STG330_Case Study How Experian Leverages Amazon EC2, EBS, and S3 with Clouder...
STG330_Case Study How Experian Leverages Amazon EC2, EBS, and S3 with Clouder...
 
DEV329_Cisco’s Journey from Monolith to Microservices
DEV329_Cisco’s Journey from Monolith to MicroservicesDEV329_Cisco’s Journey from Monolith to Microservices
DEV329_Cisco’s Journey from Monolith to Microservices
 
NET302_Global Traffic Management with Amazon Route 53
NET302_Global Traffic Management with Amazon Route 53NET302_Global Traffic Management with Amazon Route 53
NET302_Global Traffic Management with Amazon Route 53
 
DAT320_Moving a Galaxy into Cloud
DAT320_Moving a Galaxy into CloudDAT320_Moving a Galaxy into Cloud
DAT320_Moving a Galaxy into Cloud
 
DEV206_Life of a Code Change to a Tier 1 Service
DEV206_Life of a Code Change to a Tier 1 ServiceDEV206_Life of a Code Change to a Tier 1 Service
DEV206_Life of a Code Change to a Tier 1 Service
 
CTD201_Introduction to Amazon CloudFront and AWS Lambda@Edge
CTD201_Introduction to Amazon CloudFront and AWS Lambda@EdgeCTD201_Introduction to Amazon CloudFront and AWS Lambda@Edge
CTD201_Introduction to Amazon CloudFront and AWS Lambda@Edge
 
DAT341_Working with Amazon ElastiCache for Redis
DAT341_Working with Amazon ElastiCache for RedisDAT341_Working with Amazon ElastiCache for Redis
DAT341_Working with Amazon ElastiCache for Redis
 
CTD302_How Hulu reinvented Television using the AWS Cloud
CTD302_How Hulu reinvented Television using the AWS CloudCTD302_How Hulu reinvented Television using the AWS Cloud
CTD302_How Hulu reinvented Television using the AWS Cloud
 
Interstella 8888: Advanced Microservice Operations - CON407 - re:Invent 2017
Interstella 8888: Advanced Microservice Operations - CON407 - re:Invent 2017Interstella 8888: Advanced Microservice Operations - CON407 - re:Invent 2017
Interstella 8888: Advanced Microservice Operations - CON407 - re:Invent 2017
 
STG316_Optimizing Storage for Big Data Workloads
STG316_Optimizing Storage for Big Data WorkloadsSTG316_Optimizing Storage for Big Data Workloads
STG316_Optimizing Storage for Big Data Workloads
 
DEV333_Using Amazon CloudWatch for Amazon ECS Resource Monitoring at Scale
DEV333_Using Amazon CloudWatch for Amazon ECS Resource Monitoring at ScaleDEV333_Using Amazon CloudWatch for Amazon ECS Resource Monitoring at Scale
DEV333_Using Amazon CloudWatch for Amazon ECS Resource Monitoring at Scale
 
STG203_Get Rid of Tape and Modernize Backup with AWS
STG203_Get Rid of Tape and Modernize Backup with AWSSTG203_Get Rid of Tape and Modernize Backup with AWS
STG203_Get Rid of Tape and Modernize Backup with AWS
 
CTD303_Korea’s Largest OTT provider
CTD303_Korea’s Largest OTT providerCTD303_Korea’s Largest OTT provider
CTD303_Korea’s Largest OTT provider
 
CTD406_Measuring the Internet in Real Time
CTD406_Measuring the Internet in Real TimeCTD406_Measuring the Internet in Real Time
CTD406_Measuring the Internet in Real Time
 
DEV203_Launch Applications the Amazon Way
DEV203_Launch Applications the Amazon WayDEV203_Launch Applications the Amazon Way
DEV203_Launch Applications the Amazon Way
 
GPSTEC324_STORAGE FOR HPC IN THE CLOUD
GPSTEC324_STORAGE FOR HPC IN THE CLOUDGPSTEC324_STORAGE FOR HPC IN THE CLOUD
GPSTEC324_STORAGE FOR HPC IN THE CLOUD
 
STG329_ProtectWise optimizes performance of Cassandra and Kafka workloads wit...
STG329_ProtectWise optimizes performance of Cassandra and Kafka workloads wit...STG329_ProtectWise optimizes performance of Cassandra and Kafka workloads wit...
STG329_ProtectWise optimizes performance of Cassandra and Kafka workloads wit...
 
MCL310_Building Deep Learning Applications with Apache MXNet and Gluon
MCL310_Building Deep Learning Applications with Apache MXNet and GluonMCL310_Building Deep Learning Applications with Apache MXNet and Gluon
MCL310_Building Deep Learning Applications with Apache MXNet and Gluon
 

Similar a CTD307_Case Study How Mobile Device Service Company Asurion Architected Its Application on AWS Edge for Speed and Security

Continuous Compliance on AWS at Scale - SID313 - re:Invent 2017
Continuous Compliance on AWS at Scale - SID313 - re:Invent 2017Continuous Compliance on AWS at Scale - SID313 - re:Invent 2017
Continuous Compliance on AWS at Scale - SID313 - re:Invent 2017Amazon Web Services
 
AWS FSI Symposium 2017 NYC - 9 Cloud Enabled Security Designs
AWS FSI Symposium 2017 NYC - 9 Cloud Enabled Security DesignsAWS FSI Symposium 2017 NYC - 9 Cloud Enabled Security Designs
AWS FSI Symposium 2017 NYC - 9 Cloud Enabled Security DesignsAmazon Web Services
 
Operation Monitoring and Alerting at Scale in GE Transportation - ENT340 - re...
Operation Monitoring and Alerting at Scale in GE Transportation - ENT340 - re...Operation Monitoring and Alerting at Scale in GE Transportation - ENT340 - re...
Operation Monitoring and Alerting at Scale in GE Transportation - ENT340 - re...Amazon Web Services
 
Manage Infrastructure Securely at Scale and Eliminate Operational Risks - DEV...
Manage Infrastructure Securely at Scale and Eliminate Operational Risks - DEV...Manage Infrastructure Securely at Scale and Eliminate Operational Risks - DEV...
Manage Infrastructure Securely at Scale and Eliminate Operational Risks - DEV...Amazon Web Services
 
NEW LAUNCH! AWS Greengrass and Amazon FreeRTOS: Connectivity and Security at ...
NEW LAUNCH! AWS Greengrass and Amazon FreeRTOS: Connectivity and Security at ...NEW LAUNCH! AWS Greengrass and Amazon FreeRTOS: Connectivity and Security at ...
NEW LAUNCH! AWS Greengrass and Amazon FreeRTOS: Connectivity and Security at ...Amazon Web Services
 
AWS X-Ray: Debugging Applications at Scale - AWS Online Tech Talks
AWS X-Ray: Debugging Applications at Scale - AWS Online Tech TalksAWS X-Ray: Debugging Applications at Scale - AWS Online Tech Talks
AWS X-Ray: Debugging Applications at Scale - AWS Online Tech TalksAmazon Web Services
 
Keys to Successfully Monitoring and Optimizing Innovative and Sophisticated C...
Keys to Successfully Monitoring and Optimizing Innovative and Sophisticated C...Keys to Successfully Monitoring and Optimizing Innovative and Sophisticated C...
Keys to Successfully Monitoring and Optimizing Innovative and Sophisticated C...Amazon Web Services
 
SecOps 2021 Today: Using AWS Services to Deliver SecOps - SID304 - re:Invent ...
SecOps 2021 Today: Using AWS Services to Deliver SecOps - SID304 - re:Invent ...SecOps 2021 Today: Using AWS Services to Deliver SecOps - SID304 - re:Invent ...
SecOps 2021 Today: Using AWS Services to Deliver SecOps - SID304 - re:Invent ...Amazon Web Services
 
SRV312_Taking Serverless to the Edge
SRV312_Taking Serverless to the EdgeSRV312_Taking Serverless to the Edge
SRV312_Taking Serverless to the EdgeAmazon Web Services
 
NEW LAUNCH! AWS IoT Device Management - IOT330 - re:Invent 2017
NEW LAUNCH! AWS IoT Device Management - IOT330 - re:Invent 2017NEW LAUNCH! AWS IoT Device Management - IOT330 - re:Invent 2017
NEW LAUNCH! AWS IoT Device Management - IOT330 - re:Invent 2017Amazon Web Services
 
From Obstacle to Advantage: The Changing Role of Security & Compliance in You...
From Obstacle to Advantage: The Changing Role of Security & Compliance in You...From Obstacle to Advantage: The Changing Role of Security & Compliance in You...
From Obstacle to Advantage: The Changing Role of Security & Compliance in You...Amazon Web Services
 
Deep Dive on Amazon Athena - AWS Online Tech Talks
Deep Dive on Amazon Athena - AWS Online Tech TalksDeep Dive on Amazon Athena - AWS Online Tech Talks
Deep Dive on Amazon Athena - AWS Online Tech TalksAmazon Web Services
 
IOT203_Getting Started with AWS IoT
IOT203_Getting Started with AWS IoTIOT203_Getting Started with AWS IoT
IOT203_Getting Started with AWS IoTAmazon Web Services
 
Getting Started with AWS IoT - IOT203 - re:Invent 2017
Getting Started with AWS IoT - IOT203 - re:Invent 2017Getting Started with AWS IoT - IOT203 - re:Invent 2017
Getting Started with AWS IoT - IOT203 - re:Invent 2017Amazon Web Services
 
DEV325_Application Deployment Techniques for Amazon EC2 Workloads with AWS Co...
DEV325_Application Deployment Techniques for Amazon EC2 Workloads with AWS Co...DEV325_Application Deployment Techniques for Amazon EC2 Workloads with AWS Co...
DEV325_Application Deployment Techniques for Amazon EC2 Workloads with AWS Co...Amazon Web Services
 
Advanced Patterns in Microservices Implementation with Amazon ECS - CON402 - ...
Advanced Patterns in Microservices Implementation with Amazon ECS - CON402 - ...Advanced Patterns in Microservices Implementation with Amazon ECS - CON402 - ...
Advanced Patterns in Microservices Implementation with Amazon ECS - CON402 - ...Amazon Web Services
 
AWS Financial Services Cloud Symposium - Opening & Welcome
AWS Financial Services Cloud Symposium - Opening & WelcomeAWS Financial Services Cloud Symposium - Opening & Welcome
AWS Financial Services Cloud Symposium - Opening & WelcomeAmazon Web Services
 
Using AWS to Achieve Both Autonomy and Governance at 3M
Using AWS to Achieve Both Autonomy and Governance at 3MUsing AWS to Achieve Both Autonomy and Governance at 3M
Using AWS to Achieve Both Autonomy and Governance at 3MCasey Lee
 
DEV332_Using AWS to Achieve Both Autonomy and Governance at 3M
DEV332_Using AWS to Achieve Both Autonomy and Governance at 3MDEV332_Using AWS to Achieve Both Autonomy and Governance at 3M
DEV332_Using AWS to Achieve Both Autonomy and Governance at 3MAmazon Web Services
 
Building .NET-based Serverless Architectures and Running .NET Core Microservi...
Building .NET-based Serverless Architectures and Running .NET Core Microservi...Building .NET-based Serverless Architectures and Running .NET Core Microservi...
Building .NET-based Serverless Architectures and Running .NET Core Microservi...Amazon Web Services
 

Similar a CTD307_Case Study How Mobile Device Service Company Asurion Architected Its Application on AWS Edge for Speed and Security (20)

Continuous Compliance on AWS at Scale - SID313 - re:Invent 2017
Continuous Compliance on AWS at Scale - SID313 - re:Invent 2017Continuous Compliance on AWS at Scale - SID313 - re:Invent 2017
Continuous Compliance on AWS at Scale - SID313 - re:Invent 2017
 
AWS FSI Symposium 2017 NYC - 9 Cloud Enabled Security Designs
AWS FSI Symposium 2017 NYC - 9 Cloud Enabled Security DesignsAWS FSI Symposium 2017 NYC - 9 Cloud Enabled Security Designs
AWS FSI Symposium 2017 NYC - 9 Cloud Enabled Security Designs
 
Operation Monitoring and Alerting at Scale in GE Transportation - ENT340 - re...
Operation Monitoring and Alerting at Scale in GE Transportation - ENT340 - re...Operation Monitoring and Alerting at Scale in GE Transportation - ENT340 - re...
Operation Monitoring and Alerting at Scale in GE Transportation - ENT340 - re...
 
Manage Infrastructure Securely at Scale and Eliminate Operational Risks - DEV...
Manage Infrastructure Securely at Scale and Eliminate Operational Risks - DEV...Manage Infrastructure Securely at Scale and Eliminate Operational Risks - DEV...
Manage Infrastructure Securely at Scale and Eliminate Operational Risks - DEV...
 
NEW LAUNCH! AWS Greengrass and Amazon FreeRTOS: Connectivity and Security at ...
NEW LAUNCH! AWS Greengrass and Amazon FreeRTOS: Connectivity and Security at ...NEW LAUNCH! AWS Greengrass and Amazon FreeRTOS: Connectivity and Security at ...
NEW LAUNCH! AWS Greengrass and Amazon FreeRTOS: Connectivity and Security at ...
 
AWS X-Ray: Debugging Applications at Scale - AWS Online Tech Talks
AWS X-Ray: Debugging Applications at Scale - AWS Online Tech TalksAWS X-Ray: Debugging Applications at Scale - AWS Online Tech Talks
AWS X-Ray: Debugging Applications at Scale - AWS Online Tech Talks
 
Keys to Successfully Monitoring and Optimizing Innovative and Sophisticated C...
Keys to Successfully Monitoring and Optimizing Innovative and Sophisticated C...Keys to Successfully Monitoring and Optimizing Innovative and Sophisticated C...
Keys to Successfully Monitoring and Optimizing Innovative and Sophisticated C...
 
SecOps 2021 Today: Using AWS Services to Deliver SecOps - SID304 - re:Invent ...
SecOps 2021 Today: Using AWS Services to Deliver SecOps - SID304 - re:Invent ...SecOps 2021 Today: Using AWS Services to Deliver SecOps - SID304 - re:Invent ...
SecOps 2021 Today: Using AWS Services to Deliver SecOps - SID304 - re:Invent ...
 
SRV312_Taking Serverless to the Edge
SRV312_Taking Serverless to the EdgeSRV312_Taking Serverless to the Edge
SRV312_Taking Serverless to the Edge
 
NEW LAUNCH! AWS IoT Device Management - IOT330 - re:Invent 2017
NEW LAUNCH! AWS IoT Device Management - IOT330 - re:Invent 2017NEW LAUNCH! AWS IoT Device Management - IOT330 - re:Invent 2017
NEW LAUNCH! AWS IoT Device Management - IOT330 - re:Invent 2017
 
From Obstacle to Advantage: The Changing Role of Security & Compliance in You...
From Obstacle to Advantage: The Changing Role of Security & Compliance in You...From Obstacle to Advantage: The Changing Role of Security & Compliance in You...
From Obstacle to Advantage: The Changing Role of Security & Compliance in You...
 
Deep Dive on Amazon Athena - AWS Online Tech Talks
Deep Dive on Amazon Athena - AWS Online Tech TalksDeep Dive on Amazon Athena - AWS Online Tech Talks
Deep Dive on Amazon Athena - AWS Online Tech Talks
 
IOT203_Getting Started with AWS IoT
IOT203_Getting Started with AWS IoTIOT203_Getting Started with AWS IoT
IOT203_Getting Started with AWS IoT
 
Getting Started with AWS IoT - IOT203 - re:Invent 2017
Getting Started with AWS IoT - IOT203 - re:Invent 2017Getting Started with AWS IoT - IOT203 - re:Invent 2017
Getting Started with AWS IoT - IOT203 - re:Invent 2017
 
DEV325_Application Deployment Techniques for Amazon EC2 Workloads with AWS Co...
DEV325_Application Deployment Techniques for Amazon EC2 Workloads with AWS Co...DEV325_Application Deployment Techniques for Amazon EC2 Workloads with AWS Co...
DEV325_Application Deployment Techniques for Amazon EC2 Workloads with AWS Co...
 
Advanced Patterns in Microservices Implementation with Amazon ECS - CON402 - ...
Advanced Patterns in Microservices Implementation with Amazon ECS - CON402 - ...Advanced Patterns in Microservices Implementation with Amazon ECS - CON402 - ...
Advanced Patterns in Microservices Implementation with Amazon ECS - CON402 - ...
 
AWS Financial Services Cloud Symposium - Opening & Welcome
AWS Financial Services Cloud Symposium - Opening & WelcomeAWS Financial Services Cloud Symposium - Opening & Welcome
AWS Financial Services Cloud Symposium - Opening & Welcome
 
Using AWS to Achieve Both Autonomy and Governance at 3M
Using AWS to Achieve Both Autonomy and Governance at 3MUsing AWS to Achieve Both Autonomy and Governance at 3M
Using AWS to Achieve Both Autonomy and Governance at 3M
 
DEV332_Using AWS to Achieve Both Autonomy and Governance at 3M
DEV332_Using AWS to Achieve Both Autonomy and Governance at 3MDEV332_Using AWS to Achieve Both Autonomy and Governance at 3M
DEV332_Using AWS to Achieve Both Autonomy and Governance at 3M
 
Building .NET-based Serverless Architectures and Running .NET Core Microservi...
Building .NET-based Serverless Architectures and Running .NET Core Microservi...Building .NET-based Serverless Architectures and Running .NET Core Microservi...
Building .NET-based Serverless Architectures and Running .NET Core Microservi...
 

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
 

CTD307_Case Study How Mobile Device Service Company Asurion Architected Its Application on AWS Edge for Speed and Security

  • 1. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. AWS re:INVENT C a s e S t u d y : H o w M o b i l e D e v i c e S e r v i c e C o m p a n y A s u r i o n A r c h i t e c t e d I t s A p p l i c a t i o n o n A W S E d g e f o r S p e e d a n d S e c u r i t y J a b e z A b r a h a m , C l o u d S e c u r i t y A r c h i t e c t , A s u r i o n N o v e m b e r 2 8 , 2 0 1 7
  • 2. For over 20 years, Asurion has helped people across the globe balance the interdependency between life and technology. Today, as the industry-defining leader of technology solutions, we ensure 300 million consumers’ devices and appliances stay online and on the job in this fast moving, tech-driven world. Asurion ensures technology and people are harmonious. And your life is in balance. We do so across the digitally connected globe, by speaking six languages, and by working across any device, platform or provider. We do this in 50 offices around the world, with our global headquarters in Nashville, TN, our Asia Pacific HQ in Singapore, and our European HQ in London.
  • 3. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Device Protection Coverage for loss, theft, damage, and out of warranty malfunction, for single or multiple devices Premier Tech Help Soluto offers 100% access to a tech expert, to solve any technology issue across OS systems and platforms. Electronics Protection Coverage for computers, laptops, tablets, gaming consoles, entertainment system, televisions and home phones of any age, brand or size What we do We are the trusted partner to some of the biggest retailers, manufacturers and service providers in the world Together we offer best in class:
  • 4. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Agenda 1.Layered Methodology 2.All in AWS Edge 3.Demo 4.Implementation Patterns 5.Dos and Don’ts
  • 5. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Setting the Stage
  • 6. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Network Layer Amazon CloudFront, Amazon Route 53, Elastic Load Balancing, Amazon Virtual Private Cloud (Amazon VPC), AWS Direct Connect or VPN, ingress and egress, Routing Layered Methodology Content Network SecurityContent Layer Origin Mapping, A/B, Blue/Green, Dynamic Queries, Caching, Streaming Security Layer DDoS, WAF, Origin Access Identity, TLS, Custom Certs, Regulatory Requirements
  • 7. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Hybrid Dependencies L a y e r e d M e t h o d o l o g y Content Network Security Network Layer Hardcoded IPs for On-Premises dependencies A/B routing for same Origin Blue/Green routing for Canary deployments Internal vs. External facing Applications
  • 8. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Site Maintenance with Lambda@edge Content Network Security Content Layer Origin Mapping Forward Dynamic Queries Referrer header for WordPress Cache invalidation Costing for CloudFront traffic L a y e r e d M e t h o d o l o g y
  • 9. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Custom Header for securing approved traffic Content Network Security Security Layer CloudFront Security Group Custom Auth. with IP whitelisting All sensitive information encrypted using KMS and stored in config Custom Certs Dedicated IPs/SNI L a y e r e d M e t h o d o l o g y
  • 10. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Regulatory Considerations Retaining Logs Geo Location lockdown Reduce compliance scope Disable Caching on sensitive forms Encryption Standards SOC2 Compliance report
  • 11. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. All in AWS Edge | Core Focus 1. Content Delivery 2. Endpoint Protection 3. Serverless Architectures 4. Cost Effective
  • 12. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. All in AWS Edge 1.Pre-migration strategy 2.Deep Dive Analysis 3.Roles and Responsibilities 4.External Requirements 5.Operational Uplift 6.Training 7.Migration 8.Post Migration
  • 13. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Pre-Migration strategy 1.Time to Market 2.Security considerations 3.Sites already deployed in AWS 4.On-Premises dependencies 5.Cost A l l i n A W S E d g e
  • 14. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Deep Dive Analysis 1.Architecture reviews 2.Caching requirements 3.Origin requirements 4.Development team impact 5.Support impact 6.A/B and Blue/Green requirements 7.Origin cloaking A l l i n A W S E d g e
  • 15. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Roles and Responsibilities 1.DDoS vs. WAF 2.Who manages what 3.Active mitigation 4.Service Governance 5.DRT team 6.Cadence calls A l l i n A W S E d g e
  • 16. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. External Requirements 1.Business priorities 2.License impact for renewals 3.Internal vetting of our processes Operational Uplift 1.Security Operations monitoring 2.New WAF rules 3.Monitoring and mitigating threats A l l i n A W S E d g e
  • 17. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Training 1.Internal team Dynamics 2.DevOps impact on deployments 3.Functional and performance testing 4.Center of Excellence 5.Architecture impact on teams A l l i n A W S E d g e
  • 18. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Migration 1.Running in parallel 2.RFC and Switch over 3.Domain name and Custom certs 4.Migration Strategies Post Migration 1.Incident Post-Mortems 2.Ongoing monitoring 3.Updates and iterative enhancements A l l i n A W S E d g e
  • 19. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Web Architecture Implementation corporatedatacenter Users Multi-Path Routing - rules engine - hosted site weighted TXT record sets A/B Routing Blue/Green Routing
  • 20. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Multi-Path Routing Use Case o R e v e r s e P r o x y u s i n g L a m b d a @ e d g e o R o u t i n g b e t w e e n A W S a n d O n - P r e m i s e s o A b s t r a c t r u l e s i n t o a n i s o l a t e d S 3
  • 21. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. 'use strict'; function getSiteVal (params){ return new Promise (function (resolve, reject) { const http = require('http'); var options = { host: 'd6e71f08bk8tj.cloudfront.net', port: 80, path: ’/siteinfo.json', method: 'GET' }; var req = http.request(options,function(res){ res.on('data', chunk => { console.log(`site information "${chunk}"`); resolve(chunk); }); }); req.on('error', function(e) { console.log('problem with request: ' + e.message); }); req.end(); }); } exports.handler = (event, context, callback) => { const request = event.Records[0].cf.request; getSiteVal().then(function (data) { var value = JSON.parse(data); console.log('Value of passed data ' + JSON.stringify(value)); console.log('Value of request uri ' + request.uri); CODE SNIPPET | Multi-Path Routing if(value.hasOwnProperty(request.uri)) { var picked = value[request.uri]; console.log ('Value of picked ' + picked); if (picked[0] === 1) { request.uri = picked[1]; console.log('Value of internal loop ' + request.uri); callback(null, request); return; } else if (picked[0] === 2); { const response = { status: '302', statusDescription: 'Found', headers: { location: [{ key: 'Location', value: picked[1], }], }, }; console.log('Value of external loop ' + JSON.stringify(response)); callback(null, response); return; } } else { request.uri = value["/other"][1]; console.log('Value of other loop ' + request.uri); callback(null, request); } }); };
  • 22. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. CloudWatch logs M u l t i - P a t h R o u t i n g { "/":[1,"/index.html"], "/hpath":[1,"/cloud.html"], "/mpath":[2,"https://s3.amazonaws.com/logix.d2/maint.html"] "/epath":[2,"https://logix.link"], "/other":[1,"/404error.html"], "/old.html":[1,"/old/old.html"], } siteinfo.json
  • 23. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Path Pattern redirection 'use strict'; exports.handler = (event, context, callback) => { const request = event.Records[0].cf.request; request.uri = request.uri.replace(/^/alb//g, '/');; console.log(`Request uri set to "${request.uri}"`); callback(null, request); }; CloudWatch logs
  • 24. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. A/B Use Case o A b s t r a c t % a n d a p p p a t h a t t h e o r i g i n o R o u t e 5 3 T X T r e c o r d s e t o M u l t i p l e v e r s i o n d e p l o y e d t o t h e s a m e o r i g i n
  • 25. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. 'use strict'; function getRoute53val (params){ return new Promise (function (resolve, reject) { var dnstxt = require('dns'); dnstxt.resolveTxt("ab.logix.link",function(err,res) { if (err) { console.log('There was an error reading the record', err); return; } console.log('Value of first loop' + JSON.stringify(res)); resolve(JSON.stringify(res)); }); }); } CODE SNIPPET | A/B exports.handler = (event, context, callback) => { const request = event.Records[0].cf.request; if (request.uri !== '/') { // not an A-B testing callback(null, request); return; } getRoute53val().then(function (data) { var value = JSON.parse(data); console.log('Value of passed data ' + value); request.uri = value[0][0]; console.log(`Request uri set to "${request.uri}"`); callback(null, request); }); };
  • 26. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Blue/Green & Session Mgmt. o U s e P e r s i s t e n c e C o o k i e f o r m a n a g i n g s e s s i o n o A p p l i c a t i o n d e p e n d e n c y f o r C o o k i e Blue/Green Use Case o A b s t r a c t % a n d a p p p a t h a t t h e o r i g i n o R o u t e 5 3 T X T r e c o r d s e t o R e s t r i c t a c c e s s t o L a m b d a f o r o p s o C a n a r y d e p l o y m e n t s w i t h m u l t i p l e o r i g i n s
  • 27. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. 'use strict'; function getRoute53val (params){ return new Promise (function (resolve, reject) { var dnstxt = require('dns'); dnstxt.resolveTxt("bg.logix.link",function(err,res) { if (err) { console.log('There was an error reading the record', err); return; } console.log('Value of first loop' + JSON.stringify(res)); resolve(JSON.stringify(res)); }); }); } exports.handler = (event, context, callback) => { const request = event.Records[0].cf.request; if (request.uri === '/blue' || request.uri === '/green') { // in proper path callback(null, request); return; } getRoute53val().then(function (data) { var value = JSON.parse(data); console.log('Value of passed data ' + value); console.log('Value of request uri ' + request.uri); CODE SNIPPET | B/G let url = 'https://bg.logix.link'; url = url + value[0][0] + request.uri; console.log ('Value of url ' + url); const response = { status: '302', statusDescription: 'Found', headers: { location: [{ key: 'Location', value: url, }], }, }; callback(null, response); }); };
  • 28. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. 'use strict'; function getRoute53val (params){ return new Promise (function (resolve, reject) { var dnstxt = require('dns'); dnstxt.resolveTxt("bgp.logix.link",function(err,res) { if (err) { console.log('There was an error reading the record', err); return; } console.log('Value of first loop' + JSON.stringify(res)); resolve(JSON.stringify(res)); }); }); } exports.handler = (event, context, callback) => { const request = event.Records[0].cf.request; const headers = request.headers; const cookiePersistB = 'Persistence=Blue'; const cookiePersistG = 'Persistence=Green'; let pathUri; if (headers.cookie) { for (let i = 0; i < headers.cookie.length; i++) { if (headers.cookie[i].value.indexOf(cookiePersistB) >= 0) { console.log('Persistent Blue cookie found'); pathUri = '/blue'; break; } else if (headers.cookie[i].value.indexOf(cookiePersistG) >= 0) { console.log('Persistent Green cookie found'); pathUri = '/green'; break; } } CODE SNIPPET | B/G and Session Mgmt. request.uri = pathUri + request.uri; console.log(`In cookie loop. Request uri set to "${request.uri}"`); callback(null, request); } else if (!pathUri) { console.log('Persistent cookie has not been found. Checking Route53'); getRoute53val().then(function (data) { var value = JSON.parse(data); console.log('Value of passed data ' + value); let url = 'https://bgp.logix.link'; url = url + value[0][0] + request.uri; console.log ('Value of url ' + url); const response = { status: '302', statusDescription: 'Found', headers: { location: [{ key: 'Location', value: url, }], }, }; callback(null, response); }); } };
  • 29. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Route 53 setting CloudWatch logs A/B
  • 30. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. CloudWatch logs B / G w i t h C o o k i e B / G w i t h o u t C o o k i e
  • 31. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Implementation PatternsNetworkCentricPattern Users weighted record sets app.example53.com - blue-elb : 50 - green-elb : 50 app.example.com CNAME: app.example53.com M a n a g i n g D N S d e p e n d e n c y
  • 32. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Implementation PatternsContentCentricPattern Users maintenance viewerrequest M a n a g i n g c o n t e n t r o u t i n g corporatedatacenter
  • 33. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Implementation PatternsSecurityCentricPattern Approved Users governance lambda External Users custom Auth + IP validation API key A P I s f o r i n t e r n a l u s e r s
  • 34. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. o Buy in from Internal Security teams o Layered Security Model o Layer AWS compliance reports with your controls o Training and enabling Development for faster adoption o Build RACI matrix for ownership o Multi-vendor Network hops o Open Security Groups o Expect the same visibility as a traditional on-premises service o Lift and Shift to AWS could be cost prohibitive o Self-Signed Certificates Dos and Don’ts
  • 35. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Layered Methodology Benefits, Business Process, Contractual and Regulatory requirements Recap Content Network SecurityAll in AWS EDGE Migration Strategies, Shield+, Proactive vs. Reactive vs. Preventive Implementation Patterns Content Layer, Network layer, Security Layer, Dos and Don’ts
  • 36. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Thank you!