This repository has been archived by the owner on Oct 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 237
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add an EC2 example with raw pulumi code (#1237)
- Loading branch information
Showing
2 changed files
with
79 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"name": "aws-ec2-pulumi", | ||
"version": "1.0.0", | ||
"description": "", | ||
"type": "module", | ||
"main": "index.js", | ||
"scripts": { | ||
"deploy": "go run ../../cmd/sst deploy", | ||
"remove": "go run ../../cmd/sst remove", | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"keywords": [], | ||
"author": "", | ||
"license": "ISC", | ||
"devDependencies": { | ||
"sst": "3.0.1-7" | ||
}, | ||
"dependencies": { | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
/// <reference path="./.sst/platform/config.d.ts" /> | ||
|
||
/** | ||
* ## EC2 (using Pulumi) example | ||
* | ||
* Use raw pulumi code to create an EC2 instance. | ||
*/ | ||
export default $config({ | ||
app(input) { | ||
return { | ||
name: "aws-ec2-pulumi", | ||
home: "aws", | ||
removal: input?.stage === "production" ? "retain" : "remove", | ||
}; | ||
}, | ||
async run() { | ||
// Notice you don't need to import pulumi, it is already part of sst. | ||
const securityGroup = new aws.ec2.SecurityGroup("web-secgrp", { | ||
ingress: [ | ||
{ | ||
protocol: "tcp", | ||
fromPort: 80, | ||
toPort: 80, | ||
cidrBlocks: ["0.0.0.0/0"], | ||
}, | ||
], | ||
}); | ||
|
||
// Find the latest Ubuntu AMI | ||
const ami = aws.ec2.getAmi({ | ||
filters: [ | ||
{ | ||
name: "name", | ||
values: ["ubuntu/images/hvm-ssd/ubuntu-focal-20.04-amd64-server-*"], | ||
}, | ||
], | ||
mostRecent: true, | ||
owners: ["099720109477"], // Canonical | ||
}); | ||
|
||
// User data to set up a simple web server | ||
const userData = `#!/bin/bash | ||
echo "Hello, World!" > index.html | ||
nohup python3 -m http.server 80 &`; | ||
|
||
// Create an EC2 instance | ||
const server = new aws.ec2.Instance("web-server", { | ||
instanceType: "t2.micro", | ||
ami: ami.then((ami) => ami.id), | ||
userData: userData, | ||
vpcSecurityGroupIds: [securityGroup.id], | ||
associatePublicIpAddress: true, | ||
}); | ||
|
||
return { | ||
app: server.publicIp, | ||
}; | ||
}, | ||
}); |