SlideShare a Scribd company logo
1 of 41
Download to read offline
Keeping AWS in check with Puppet 
or 
“Managing cloud networking with Puppet with a healthy dose of 
trolling yourself on the side” 
Matt Carroll
HELLO.
What’s all this about then? 
● We use AWS extensively, especially EC2 
● We needed a way to organise our AWS networking (VPCs) 
● It needs to be: 
○ Centrally managed 
○ Reproducible 
○ Declarative (idempotent) 
○ Ideally not another solution on top of a stack of solutions
Spoiler 
We (Tom) decided to use Puppet 
We wrote a set of types and providers to use 
with the AWS API
What I’m going to cover 
YOU ARE HERE 
1. Intro 
2. AWS networking basics 
3. Why we chose Puppet 
4. How it actually works 
5. Some of the “interesting” things we learned 
6. Summary 
7. Questions
What I hope you’ll get from this 
● A sense of Puppet as an extensible framework that can 
manage dependencies in external APIs 
● Nodes are just units of computing capacity - an operation 
does not have to be a subset of a node 
● Some insight into the types and providers system 
● Some of the strange things we learned along the way 
… and as always...
To serve as a lesson to others.
SOME AWS BASICS.
Some 
of this 
isn’t 
exactly 
retina 
resolution
The (simplified) Hierarchy 
Account 
Region 
VPC 
Routetable 
Subnet
The (needlessly complicated simplified) 
Hierarchy 
Account: 
• Region 
• dopt: DHCP Options 
• vpc: Virtual Private Cloud 
• igw: Internet Gateway 
• cgw: Customer Gateway 
• vgw: Virtual Gateway 
• vpn: VPN 
• routetable 
• subnet
How do we make all these objects? 
Just make them in the console!
How do we make all these objects? 
IF YOU HATE YOURSELF 
Just make them in the console!
How do we actually make all of these objects? 
• AWS::SDK! 
• We’ll have to ensure that the resources get created (and 
purged)... 
• Idempotently… 
• With all their dependencies… 
• Remind you of something?
USE PUPPET!
Create Puppet types for VPC objects! 
● Resources for each of the objects 
○ All API calls made on this level 
○ Will contain all code for reading and creating individual 
resources 
○ No dependencies other than autorequires in the types - 
those in the hierarchy earlier 
● Business logic in manifests 
○ For your site-specific dependencies and network structure 
○ e.g. we have a separate VPC for each environment 
● Data in hiera
(Actually though) Why Puppet? 
• With the ability to query and create and modify objects 
through the API we can state them declaratively 
• We can thus create resources which can be included or 
purged idempotently 
• Rather than specify order, we can state dependencies 
and allow Puppet to figure order out
Why Puppet? 
Using this model you can even collect dependencies and 
resources: 
• Make all resources of a type with a parameter evaluate after 
another 
• Control purge and no-op of all aws resources
Why Puppet? 
Admittedly it seems a little asymmetrical: 
• Puppet runs on nodes which creates 
resources in AWS 
• AWS networking is not a subset of a node 
• Nodes just act as executors for creating AWS 
resource 
But actually this plays to our advantage (more on 
this later)
HOW IT WORKS.
Puppet Types 
• The bit that you specify in 
the manifest 
• Really just a DDL for the 
resource’s metadata 
• The “front end” for the 
pluggable “back end” (the 
provider) 
• Interface to specify all 
properties and parameters
Puppet Providers 
• The business end 
• This is where the API 
code lives 
• Quite a lot longer 
• Handles all application 
and querying of the 
resource including 
prefetch
What’s a “prefetch”? 
• Some resources are 
expensive to read, so 
you read them all once 
when you first come 
across one 
• This is done before the 
catalog is completely 
compiled
Manifest examples
Associated Infrastructure 
• How do you handle multiple accounts? 
• Dedicated AWS admin box within each 
account to apply the resources on 
• IAM roles to handle credentials 
• Logging resource changes separately 
• Why not do it in the code...?
LESSONS LEARNED. 
(the hard way)
Don’t 
do 
what 
Donny 
Don’t 
does
Why not put credentials in the code?
Why not put credentials in the code? 
• We (I) tried to make an 
aws_credentials type 
• This requires access to the 
catalog in the prefetch phase so 
other resources can query it 
• You ALSO need to guarantee 
type evaluation order and 
access to credentials in the 
catalog so that you can use 
prefetch
Why not put credentials in the code? 
• The instances method suddenly 
requires an argument 
• In fact, so does anything that 
isn’t an instance method 
• Actually ended up copying and 
pasting the resources resource 
to aws_resources and adding in 
a “credentials” parameter
On second thoughts...
Prefetch isn’t… Exceptional 
• https://tickets.puppetlabs.com/browse/PUP-3656 
• This means that if anything goes awry in prefetch, puppet will 
swallow it 
• In our case, we hit the API limit occasionally, meaning we got 
duplicate resources
So we did a bad thing...
Asynchronous APIs tell lies 
• When you create an object you get 
a 200 OK 
• This doesn’t mean “I’ve done it”, 
this means “I’ll do it” 
• In a dependency chain, this can 
mean that a resource is about to be 
created, but when it’s checked by 
another resource it’s not there yet 
• In the Puppet paradigm it’s best 
just to run until convergence.
SO IN SUMMARY...
What I learned (the hard way) 
• The “resources” resource 
• Is hard to understand unless 
you read the code (type only) 
because Googling it is 
impossible. 
• Could do with being able to 
apply other arbitrary 
properties and parameters?* 
*this may be an awful idea
What I learned (the hard way) 
• Instances vs. class methods paradigm gets very confusing 
because it is tied to applying catalogue vs. prefetch 
• Prefetch is generally pretty confusing when you add in 
dependencies TO the prefetch
What really cool things I learned 
• You can reproduce AWS networking (and other objects 
thanks to other contributors!) 
• A really cool insight into the types and providers system and 
how it could grow in the future 
• Learning to treat servers not like pets OR cattle but as a 
medium by which you do useful stuff 
… and you could do this with a whole bunch of 
APIs
THANKS FOR LISTENING! 
github.com/bobtfish/puppet-aws_api 
Matt Carroll 
SRE at Yelp 
@oholiab 
mattc@yelp.com 
yelp.com/careers (we’re hiring)

More Related Content

Recently uploaded

New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxLoriGlavin3
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfLoriGlavin3
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
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
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxLoriGlavin3
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
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
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 

Recently uploaded (20)

New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdf
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
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
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptx
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
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
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 

Featured

PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Applitools
 
12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at WorkGetSmarter
 
Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...
Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...
Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...DevGAMM Conference
 
Barbie - Brand Strategy Presentation
Barbie - Brand Strategy PresentationBarbie - Brand Strategy Presentation
Barbie - Brand Strategy PresentationErica Santiago
 

Featured (20)

PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
 
12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work
 
ChatGPT webinar slides
ChatGPT webinar slidesChatGPT webinar slides
ChatGPT webinar slides
 
More than Just Lines on a Map: Best Practices for U.S Bike Routes
More than Just Lines on a Map: Best Practices for U.S Bike RoutesMore than Just Lines on a Map: Best Practices for U.S Bike Routes
More than Just Lines on a Map: Best Practices for U.S Bike Routes
 
Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...
Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...
Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...
 
Barbie - Brand Strategy Presentation
Barbie - Brand Strategy PresentationBarbie - Brand Strategy Presentation
Barbie - Brand Strategy Presentation
 

Keeping AWS in check with Puppet (Puppetcamp London 2014-11-17)

  • 1. Keeping AWS in check with Puppet or “Managing cloud networking with Puppet with a healthy dose of trolling yourself on the side” Matt Carroll
  • 3.
  • 4. What’s all this about then? ● We use AWS extensively, especially EC2 ● We needed a way to organise our AWS networking (VPCs) ● It needs to be: ○ Centrally managed ○ Reproducible ○ Declarative (idempotent) ○ Ideally not another solution on top of a stack of solutions
  • 5. Spoiler We (Tom) decided to use Puppet We wrote a set of types and providers to use with the AWS API
  • 6. What I’m going to cover YOU ARE HERE 1. Intro 2. AWS networking basics 3. Why we chose Puppet 4. How it actually works 5. Some of the “interesting” things we learned 6. Summary 7. Questions
  • 7. What I hope you’ll get from this ● A sense of Puppet as an extensible framework that can manage dependencies in external APIs ● Nodes are just units of computing capacity - an operation does not have to be a subset of a node ● Some insight into the types and providers system ● Some of the strange things we learned along the way … and as always...
  • 8. To serve as a lesson to others.
  • 10. Some of this isn’t exactly retina resolution
  • 11. The (simplified) Hierarchy Account Region VPC Routetable Subnet
  • 12. The (needlessly complicated simplified) Hierarchy Account: • Region • dopt: DHCP Options • vpc: Virtual Private Cloud • igw: Internet Gateway • cgw: Customer Gateway • vgw: Virtual Gateway • vpn: VPN • routetable • subnet
  • 13. How do we make all these objects? Just make them in the console!
  • 14. How do we make all these objects? IF YOU HATE YOURSELF Just make them in the console!
  • 15. How do we actually make all of these objects? • AWS::SDK! • We’ll have to ensure that the resources get created (and purged)... • Idempotently… • With all their dependencies… • Remind you of something?
  • 17.
  • 18. Create Puppet types for VPC objects! ● Resources for each of the objects ○ All API calls made on this level ○ Will contain all code for reading and creating individual resources ○ No dependencies other than autorequires in the types - those in the hierarchy earlier ● Business logic in manifests ○ For your site-specific dependencies and network structure ○ e.g. we have a separate VPC for each environment ● Data in hiera
  • 19. (Actually though) Why Puppet? • With the ability to query and create and modify objects through the API we can state them declaratively • We can thus create resources which can be included or purged idempotently • Rather than specify order, we can state dependencies and allow Puppet to figure order out
  • 20. Why Puppet? Using this model you can even collect dependencies and resources: • Make all resources of a type with a parameter evaluate after another • Control purge and no-op of all aws resources
  • 21. Why Puppet? Admittedly it seems a little asymmetrical: • Puppet runs on nodes which creates resources in AWS • AWS networking is not a subset of a node • Nodes just act as executors for creating AWS resource But actually this plays to our advantage (more on this later)
  • 23. Puppet Types • The bit that you specify in the manifest • Really just a DDL for the resource’s metadata • The “front end” for the pluggable “back end” (the provider) • Interface to specify all properties and parameters
  • 24. Puppet Providers • The business end • This is where the API code lives • Quite a lot longer • Handles all application and querying of the resource including prefetch
  • 25. What’s a “prefetch”? • Some resources are expensive to read, so you read them all once when you first come across one • This is done before the catalog is completely compiled
  • 27. Associated Infrastructure • How do you handle multiple accounts? • Dedicated AWS admin box within each account to apply the resources on • IAM roles to handle credentials • Logging resource changes separately • Why not do it in the code...?
  • 29. Don’t do what Donny Don’t does
  • 30. Why not put credentials in the code?
  • 31. Why not put credentials in the code? • We (I) tried to make an aws_credentials type • This requires access to the catalog in the prefetch phase so other resources can query it • You ALSO need to guarantee type evaluation order and access to credentials in the catalog so that you can use prefetch
  • 32. Why not put credentials in the code? • The instances method suddenly requires an argument • In fact, so does anything that isn’t an instance method • Actually ended up copying and pasting the resources resource to aws_resources and adding in a “credentials” parameter
  • 34. Prefetch isn’t… Exceptional • https://tickets.puppetlabs.com/browse/PUP-3656 • This means that if anything goes awry in prefetch, puppet will swallow it • In our case, we hit the API limit occasionally, meaning we got duplicate resources
  • 35. So we did a bad thing...
  • 36. Asynchronous APIs tell lies • When you create an object you get a 200 OK • This doesn’t mean “I’ve done it”, this means “I’ll do it” • In a dependency chain, this can mean that a resource is about to be created, but when it’s checked by another resource it’s not there yet • In the Puppet paradigm it’s best just to run until convergence.
  • 38. What I learned (the hard way) • The “resources” resource • Is hard to understand unless you read the code (type only) because Googling it is impossible. • Could do with being able to apply other arbitrary properties and parameters?* *this may be an awful idea
  • 39. What I learned (the hard way) • Instances vs. class methods paradigm gets very confusing because it is tied to applying catalogue vs. prefetch • Prefetch is generally pretty confusing when you add in dependencies TO the prefetch
  • 40. What really cool things I learned • You can reproduce AWS networking (and other objects thanks to other contributors!) • A really cool insight into the types and providers system and how it could grow in the future • Learning to treat servers not like pets OR cattle but as a medium by which you do useful stuff … and you could do this with a whole bunch of APIs
  • 41. THANKS FOR LISTENING! github.com/bobtfish/puppet-aws_api Matt Carroll SRE at Yelp @oholiab mattc@yelp.com yelp.com/careers (we’re hiring)