/gist:090e837e51e2b2c35466 Secret
Created
November 26, 2014 17:28
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
[DEFAULT] | |
## this section is just used as default for all the "s3 *" | |
## sections, you can place these variables also directly there | |
## replace with e.g. "localhost" to run against local software | |
host = saio | |
## uncomment the port to use something other than 80 | |
port = 8080 | |
## say "no" to disable TLS | |
is_secure = no | |
[fixtures] | |
## all the buckets created will start with this prefix; | |
## {random} will be filled with random characters to pad | |
## the prefix to 30 characters long, and avoid collisions | |
bucket prefix = functional-{random}- | |
[s3 main] | |
## the tests assume two accounts are defined, "main" and "alt". | |
## user_id is a 64-character hexstring | |
user_id = test:tester | |
## display name typically looks more like a unix login, "jdoe" etc | |
display_name = testdisplay | |
## replace these with your access keys | |
access_key = test:tester | |
secret_key = testing | |
[s3 alt] | |
user_id = test2:tester2 | |
display_name = test2display | |
access_key = test2:tester2 | |
secret_key = testing2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment