Created
September 19, 2014 14:57
-
-
Save ycombinator/623ba861e85f285e4139 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_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", | |
| "parameters": { | |
| "terms": true | |
| } | |
| } | |
| ' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment