An open API service indexing awesome lists of open source software.

https://github.com/dutchcoders/stacktray

Manage your cloud (AWS) instances from the status bar on Mac OS X. With StackTray you can connect to instances, reboot, start, stop, copy addresses to clipboard and more to come.
https://github.com/dutchcoders/stacktray

Last synced: 3 months ago
JSON representation

Manage your cloud (AWS) instances from the status bar on Mac OS X. With StackTray you can connect to instances, reboot, start, stop, copy addresses to clipboard and more to come.

Awesome Lists containing this project

README

        

# StackTray
StackTray App

To get started with the app, run 'pod install' in the terminal.
After that, open StackTray.xcworkspace

## Creating policy with restricted access using IAM
Using IAM you can create an account with less privileges, eg. to only read, stop and start instances.

Example policy file that allows stop and start for the instances with environment tag stacktray:

```
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "TheseActionsSupportResourceLevelPermissionsWithInstancesAndTags",
"Effect": "Allow",
"Action": [
"ec2:StopInstances",
"ec2:StartInstances"],
"Resource": "arn:aws:ec2:eu-west-1:{customerid}:instance/*",
"Condition": {
"StringEquals": {"ec2:ResourceTag/Environment": "stacktray"}
}
}
]
}
```