Infrastructure as Code How .tf to do - 2018.purplecon.nz .tf … · Infrastructure as Code. Hello!...

37
How .tf to do Infrastructure as Code

Transcript of Infrastructure as Code How .tf to do - 2018.purplecon.nz .tf … · Infrastructure as Code. Hello!...

Page 1: Infrastructure as Code How .tf to do - 2018.purplecon.nz .tf … · Infrastructure as Code. Hello! Alix Klingenberg Duck Lawn 2. Hello! 3 Alix Klingenberg Duck Lawn. Infrastructure

How .tf to do Infrastructure as Code

Page 2: Infrastructure as Code How .tf to do - 2018.purplecon.nz .tf … · Infrastructure as Code. Hello! Alix Klingenberg Duck Lawn 2. Hello! 3 Alix Klingenberg Duck Lawn. Infrastructure

Hello!Alix Klingenberg Duck Lawn

2

Page 3: Infrastructure as Code How .tf to do - 2018.purplecon.nz .tf … · Infrastructure as Code. Hello! Alix Klingenberg Duck Lawn 2. Hello! 3 Alix Klingenberg Duck Lawn. Infrastructure

Hello!

3

Alix Klingenberg Duck Lawn

Page 4: Infrastructure as Code How .tf to do - 2018.purplecon.nz .tf … · Infrastructure as Code. Hello! Alix Klingenberg Duck Lawn 2. Hello! 3 Alix Klingenberg Duck Lawn. Infrastructure

Infrastructure asCode

ReusableRepeatable

4

AuditableShared

Page 5: Infrastructure as Code How .tf to do - 2018.purplecon.nz .tf … · Infrastructure as Code. Hello! Alix Klingenberg Duck Lawn 2. Hello! 3 Alix Klingenberg Duck Lawn. Infrastructure

5

Page 6: Infrastructure as Code How .tf to do - 2018.purplecon.nz .tf … · Infrastructure as Code. Hello! Alix Klingenberg Duck Lawn 2. Hello! 3 Alix Klingenberg Duck Lawn. Infrastructure

6

How tho?

Page 7: Infrastructure as Code How .tf to do - 2018.purplecon.nz .tf … · Infrastructure as Code. Hello! Alix Klingenberg Duck Lawn 2. Hello! 3 Alix Klingenberg Duck Lawn. Infrastructure

7

All the things! ?

??!

Ω µ+ℳ=

?!

1+2=$

Page 8: Infrastructure as Code How .tf to do - 2018.purplecon.nz .tf … · Infrastructure as Code. Hello! Alix Klingenberg Duck Lawn 2. Hello! 3 Alix Klingenberg Duck Lawn. Infrastructure

8

Page 9: Infrastructure as Code How .tf to do - 2018.purplecon.nz .tf … · Infrastructure as Code. Hello! Alix Klingenberg Duck Lawn 2. Hello! 3 Alix Klingenberg Duck Lawn. Infrastructure

9

Page 10: Infrastructure as Code How .tf to do - 2018.purplecon.nz .tf … · Infrastructure as Code. Hello! Alix Klingenberg Duck Lawn 2. Hello! 3 Alix Klingenberg Duck Lawn. Infrastructure

10

Page 11: Infrastructure as Code How .tf to do - 2018.purplecon.nz .tf … · Infrastructure as Code. Hello! Alix Klingenberg Duck Lawn 2. Hello! 3 Alix Klingenberg Duck Lawn. Infrastructure

11

Identity and Access Management (IAM)

aka all your users and stuff

Page 12: Infrastructure as Code How .tf to do - 2018.purplecon.nz .tf … · Infrastructure as Code. Hello! Alix Klingenberg Duck Lawn 2. Hello! 3 Alix Klingenberg Duck Lawn. Infrastructure

12

statement

effect = "Allow",

actions = [

"s3:PutObject",

"s3:GetObject",

],

resources = "arn:aws:s3:::my-bucket/*",

IAM policy

Page 13: Infrastructure as Code How .tf to do - 2018.purplecon.nz .tf … · Infrastructure as Code. Hello! Alix Klingenberg Duck Lawn 2. Hello! 3 Alix Klingenberg Duck Lawn. Infrastructure

13

IAM Role

Page 14: Infrastructure as Code How .tf to do - 2018.purplecon.nz .tf … · Infrastructure as Code. Hello! Alix Klingenberg Duck Lawn 2. Hello! 3 Alix Klingenberg Duck Lawn. Infrastructure

14

IAM Role - trust policy statement

effect = "Allow",

actions = "sts:AssumeRole",

principals

type = “AWS”,

identifier = [“lambda.amazonaws.com”],

Page 15: Infrastructure as Code How .tf to do - 2018.purplecon.nz .tf … · Infrastructure as Code. Hello! Alix Klingenberg Duck Lawn 2. Hello! 3 Alix Klingenberg Duck Lawn. Infrastructure

15

Admin Test

IAM Group

Page 16: Infrastructure as Code How .tf to do - 2018.purplecon.nz .tf … · Infrastructure as Code. Hello! Alix Klingenberg Duck Lawn 2. Hello! 3 Alix Klingenberg Duck Lawn. Infrastructure

16

Admin Test

Page 17: Infrastructure as Code How .tf to do - 2018.purplecon.nz .tf … · Infrastructure as Code. Hello! Alix Klingenberg Duck Lawn 2. Hello! 3 Alix Klingenberg Duck Lawn. Infrastructure

17

Page 18: Infrastructure as Code How .tf to do - 2018.purplecon.nz .tf … · Infrastructure as Code. Hello! Alix Klingenberg Duck Lawn 2. Hello! 3 Alix Klingenberg Duck Lawn. Infrastructure

18

ALL USERS GROUP

Page 19: Infrastructure as Code How .tf to do - 2018.purplecon.nz .tf … · Infrastructure as Code. Hello! Alix Klingenberg Duck Lawn 2. Hello! 3 Alix Klingenberg Duck Lawn. Infrastructure

LIVE DEMO

19

Page 20: Infrastructure as Code How .tf to do - 2018.purplecon.nz .tf … · Infrastructure as Code. Hello! Alix Klingenberg Duck Lawn 2. Hello! 3 Alix Klingenberg Duck Lawn. Infrastructure

20

Page 21: Infrastructure as Code How .tf to do - 2018.purplecon.nz .tf … · Infrastructure as Code. Hello! Alix Klingenberg Duck Lawn 2. Hello! 3 Alix Klingenberg Duck Lawn. Infrastructure

21

You said there would be code...

Page 22: Infrastructure as Code How .tf to do - 2018.purplecon.nz .tf … · Infrastructure as Code. Hello! Alix Klingenberg Duck Lawn 2. Hello! 3 Alix Klingenberg Duck Lawn. Infrastructure

22

Page 23: Infrastructure as Code How .tf to do - 2018.purplecon.nz .tf … · Infrastructure as Code. Hello! Alix Klingenberg Duck Lawn 2. Hello! 3 Alix Klingenberg Duck Lawn. Infrastructure

23

Page 24: Infrastructure as Code How .tf to do - 2018.purplecon.nz .tf … · Infrastructure as Code. Hello! Alix Klingenberg Duck Lawn 2. Hello! 3 Alix Klingenberg Duck Lawn. Infrastructure

24

Page 25: Infrastructure as Code How .tf to do - 2018.purplecon.nz .tf … · Infrastructure as Code. Hello! Alix Klingenberg Duck Lawn 2. Hello! 3 Alix Klingenberg Duck Lawn. Infrastructure

What is a tf state file

25

Page 26: Infrastructure as Code How .tf to do - 2018.purplecon.nz .tf … · Infrastructure as Code. Hello! Alix Klingenberg Duck Lawn 2. Hello! 3 Alix Klingenberg Duck Lawn. Infrastructure

.tf files + .tfstate file

= plan diff

26

[local] [remote]

Page 27: Infrastructure as Code How .tf to do - 2018.purplecon.nz .tf … · Infrastructure as Code. Hello! Alix Klingenberg Duck Lawn 2. Hello! 3 Alix Klingenberg Duck Lawn. Infrastructure

Now we terraform plan -out=plan.out

27

Page 28: Infrastructure as Code How .tf to do - 2018.purplecon.nz .tf … · Infrastructure as Code. Hello! Alix Klingenberg Duck Lawn 2. Hello! 3 Alix Klingenberg Duck Lawn. Infrastructure

28

Page 29: Infrastructure as Code How .tf to do - 2018.purplecon.nz .tf … · Infrastructure as Code. Hello! Alix Klingenberg Duck Lawn 2. Hello! 3 Alix Klingenberg Duck Lawn. Infrastructure

Now we terraform apply plan.out

29

Page 30: Infrastructure as Code How .tf to do - 2018.purplecon.nz .tf … · Infrastructure as Code. Hello! Alix Klingenberg Duck Lawn 2. Hello! 3 Alix Klingenberg Duck Lawn. Infrastructure

Now you can start building!

30

Page 31: Infrastructure as Code How .tf to do - 2018.purplecon.nz .tf … · Infrastructure as Code. Hello! Alix Klingenberg Duck Lawn 2. Hello! 3 Alix Klingenberg Duck Lawn. Infrastructure

Modules and code and layouts oh my!

31

Page 32: Infrastructure as Code How .tf to do - 2018.purplecon.nz .tf … · Infrastructure as Code. Hello! Alix Klingenberg Duck Lawn 2. Hello! 3 Alix Klingenberg Duck Lawn. Infrastructure

The benefitsReusabilityRepeatabilityAuditabilityShared responsibility

32

Page 33: Infrastructure as Code How .tf to do - 2018.purplecon.nz .tf … · Infrastructure as Code. Hello! Alix Klingenberg Duck Lawn 2. Hello! 3 Alix Klingenberg Duck Lawn. Infrastructure

How it worksStatefilesPlanning and applying changesHow to create modules

33

Page 34: Infrastructure as Code How .tf to do - 2018.purplecon.nz .tf … · Infrastructure as Code. Hello! Alix Klingenberg Duck Lawn 2. Hello! 3 Alix Klingenberg Duck Lawn. Infrastructure

Reusable code!You can find all terraform code used to build these environments at https://github.com/duckalini/my_first_terraform

34

Page 35: Infrastructure as Code How .tf to do - 2018.purplecon.nz .tf … · Infrastructure as Code. Hello! Alix Klingenberg Duck Lawn 2. Hello! 3 Alix Klingenberg Duck Lawn. Infrastructure

Thanks!Alix Klingenberg Duck Lawn

@evolutionises@duckalini

35

Page 36: Infrastructure as Code How .tf to do - 2018.purplecon.nz .tf … · Infrastructure as Code. Hello! Alix Klingenberg Duck Lawn 2. Hello! 3 Alix Klingenberg Duck Lawn. Infrastructure

36

Page 37: Infrastructure as Code How .tf to do - 2018.purplecon.nz .tf … · Infrastructure as Code. Hello! Alix Klingenberg Duck Lawn 2. Hello! 3 Alix Klingenberg Duck Lawn. Infrastructure

37