Slide 1

Slide 1 text

Testable / Trustable TestCon Europe 2021 Kerim Satirli Sr. Developer Advocate He/him

Slide 2

Slide 2 presenter notes

Slide 2 text

No content

Slide 3

Slide 3 presenter notes

Slide 3 text

Will Roper @WILLROP3R At 70,000 ft, the view is as breathtaking as the harsh environment outside this @usairforce U-2 pressure suit. 
 Thankful for this beautiful blue planet and all who defend it and its freedoms. #breathless

Slide 4

Slide 4 presenter notes

Slide 4 text

Sr. Developer Advocate at HashiCorp he/him @ksatirli Kerim Satirli

Slide 5

Slide 5 text

What is Infrastructure as Code 01 Introduction

Slide 6

Slide 6 text

https://console.aws.amazon.com/

Slide 7

Slide 7 text

https://console.aws.amazon.com/

Slide 8

Slide 8 text

resource "ec2" "instance" { type = "t3.micro" iam_role = "consul_server" shutdown_behavior = "terminate" storage "root" { device = "/dev/xvda" encryption = true } } CODE EDITOR Infrastructure as Code

Slide 9

Slide 9 text

service "http" "proxy" { listen_addr = "127.0.0.1:${var.port}" process "server" { command = ["./server"] } } variable "port" { type = number description = "Port for proxy service" default = 8080 } CODE EDITOR HashiCorp Configuration Language

Slide 10

Slide 10 text

Why should we codify Infrastructure? 01 Introduction

Slide 11

Slide 11 text

Infrastructure as Code ▪ executable documentation ▪ enables collaboration ▪ safe and predictable

Slide 12

Slide 12 text

Infrastructure for Today’s Workshop 01 Introduction

Slide 13

Slide 13 text

Infrastructure Overview https://github.com/im2nguyen/rover

Slide 14

Slide 14 text

Workshop 02 Workshop

Slide 15

Slide 15 text

Thank You [email protected]