My name is not as complicated as you think ๐ค
Not a pickle ย ๐ฅ
Senior software engineer ๐ด๐ป
French ๐ซ๐ท
JavaScript All The Things! โก
AWS Cloud Practitioner ๐ย
Coffee โ
Access your machine locally (SAM) ๐ฅ๏ธ
Check that your stack works the way you expect it to work (tests) ๐ง
Monitor cost of deployed resources ๐ฐ
CloudFormation is not a super admin ๐ฟ
ย
AWSTemplateFormatVersion: "2010-09-09"
Description: Static website using S3
Resources:
S3Bucket:
Type: AWS::S3::Bucket
Properties:
AccessControl: PublicRead
BucketName: amazing-website-about-gherkins
WebsiteConfiguration:
IndexDocument: index.html
ErrorDocument: error.html
DeletionPolicy: Delete
Outputs:
WebsiteURL:
Value: !GetAtt [S3Bucket, WebsiteURL]
Description: URL for website hosted on S3
S3BucketSecureURL:
Value: !Join ["", ["https://", !GetAtt [S3Bucket, DomainName]]]
Description: Name of S3 bucket to hold website content
Visualization of your templates ๐
Improvement compared to CF Designer ๐
Handle 20 common resources ๐คน
CLI, GUI, VSC plugin ๐ฉโ๐ป
Great documentation ๐
Linked to your GitHub repositories (PRO) ๐
Developer plan is free ๐
Use CodeBuild under the hood ๐๏ธ