Created
September 19, 2014 15:04
-
-
Save ycombinator/a3966adae2710c31b17c to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| #!/bin/bash | |
| curl -v -X POST \ | |
| -H "Content-Type: application/json" \ | |
| -H "X-Auth-Token: $OS_AUTH_TOKEN" \ | |
| "https://dfw.orchestration.api.rackspacecloud.com/v1/$OS_TENANT_ID/stacks" \ | |
| -d ' | |
| { | |
| "stack_name": "minecraft_server", | |
| "template_url": "https://raw.githubusercontent.com/rackspace-orchestration-templates/minecraft/master/minecraft-server.yaml", | |
| "params": { | |
| "terms": true | |
| }, | |
| "timeout_mins": 5 | |
| } | |
| ' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment