https://github.com/thesurlydev/reign
Quickly spin up compute.
https://github.com/thesurlydev/reign
Last synced: 10 months ago
JSON representation
Quickly spin up compute.
- Host: GitHub
- URL: https://github.com/thesurlydev/reign
- Owner: thesurlydev
- License: apache-2.0
- Created: 2022-01-29T01:51:17.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-12-10T14:59:53.000Z (over 2 years ago)
- Last Synced: 2025-06-14T06:39:11.570Z (12 months ago)
- Language: Rust
- Homepage:
- Size: 147 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# reign
Quickly spin up compute.
## Create a VM
Given a configuration like the following:
```json
{
"name": "reign-test",
"count": 1,
"instance_type": "t3.nano",
"ami": "ami-036d46416a34a611c",
"user": "ubuntu",
"subnet": "subnet-89ef61d3",
"group": "sg-37d22f44",
"iam_role": "digitalsanctum-role",
"region": "us-west-2",
"key": "beefcake",
"profile": "default"
}
```
## Terminate all instances
Useful when debugging.
```shell
aws ec2 describe-instances | gron | grep -iE 'instanceid' | cut -d'"' -f2 | xargs aws ec2 terminate-instances --instance-ids
```
## Road map
*