Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Infrastructure As Code
Search
Erwin Staal
November 24, 2016
Programming
0
84
Infrastructure As Code
Infrastructure as Code using Azure RM, PowerShell DSC, Chocolatey and Octopus Deploy
Erwin Staal
November 24, 2016
Tweet
Share
More Decks by Erwin Staal
See All by Erwin Staal
Networking on Azure PaaS
erwinstaal
0
69
Get up to speed with DevOps
erwinstaal
0
38
Event-driven autoscaling on Kubernetes with KEDA and Azure Functions
erwinstaal
0
150
DevOps - The Automation op compliance
erwinstaal
0
110
Architecting for Continuous Delivery
erwinstaal
0
200
Get up to speed with DevOps
erwinstaal
0
48
Get up to speed with DevOps using modern development practices
erwinstaal
0
68
TechDaysNL - De tien fundamenten van Continuous Delivery
erwinstaal
0
89
Microsoft Unity
erwinstaal
0
74
Other Decks in Programming
See All in Programming
ISUCON14感想戦で85万点まで頑張ってみた
ponyo877
1
790
ゼロからの、レトロゲームエンジンの作り方
tokujiros
3
1.2k
ASP.NET Core の OpenAPIサポート
h455h1
0
160
BEエンジニアがFEの業務をできるようになるまでにやったこと
yoshida_ryushin
0
260
自分ひとりから始められる生産性向上の取り組み #でぃーぷらすオオサカ
irof
8
2.2k
AWS re:Invent 2024個人的まとめ
satoshi256kbyte
0
150
Fibonacci Function Gallery - Part 2
philipschwarz
PRO
0
230
Внедряем бюджетирование, или Как сделать хорошо?
lamodatech
0
980
Оптимизируем производительность блока Казначейство
lamodatech
0
990
時計仕掛けのCompose
mkeeda
1
200
ファインディの テックブログ爆誕までの軌跡
starfish719
1
790
Fixstars高速化コンテスト2024準優勝解法
eijirou
0
200
Featured
See All Featured
Designing for Performance
lara
604
68k
ピンチをチャンスに:未来をつくるプロダクトロードマップ #pmconf2020
aki_iinuma
113
50k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
28
9.2k
Side Projects
sachag
452
42k
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
44
9.4k
Practical Tips for Bootstrapping Information Extraction Pipelines
honnibal
PRO
11
900
Automating Front-end Workflow
addyosmani
1367
200k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
33
2.8k
The Language of Interfaces
destraynor
156
24k
Scaling GitHub
holman
459
140k
A better future with KSS
kneath
238
17k
A Tale of Four Properties
chriscoyier
157
23k
Transcript
Infrastructure as Code
Azure Resource manager • Management of infrastructure • Resource groups
• Resouces • Resource providers • Templates • Azure portal • Visual Studio
• { • "$schema": "", • "contentVersion": "", • "parameters":
{ }, • "variables": { }, • "resources": [ ], • "outputs": { } • }
Azure Automation DSC • Management of software and settings on
machine • PowerShell DSC • Pull server • Configuration • Nodes
Configuration ServerConfig { Import-DscResource -ModuleName cChoco Import-DscResource -Module xWebAdministration Node
"webserver" { WindowsFeature installIIS { Ensure="Present" Name="Web-Server" } } }
Chocolatey • Packagemanager for Windows • choco install googlechrome •
Nuspec • Tools folder with chocolateyInstall.ps1 Install-ChocolateyPackage 'MyApp' 'msi' '/quiet' 'http://myapp.tld/myapp- 0.1.0-x86.msi' 'http://myapp.tld/myapp- 0.1.0.msi'
Octopus Deploy • Since version 3.4: Triggers on projects •
Deployment of Azure resources
None
Demo
Questions? • linkedin.com/in/erwinstaal • twitter.com/erwin_staal • speakerdeck.com/erwinstaal