Skip to content

Instantly share code, notes, and snippets.

@mdagent
mdagent / AmazonS3FullAccess.json
Created October 16, 2015 18:25
Amazon AWS - IAM User - Full Access to S3
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "s3:*",
"Resource": "*"
}
]
}
@mdagent
mdagent / s3bucketpolicy-publicread.json
Last active October 16, 2015 18:29
Amazon S3 Bucket Policy - Allow Public Read
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AllowPublicRead",
"Effect": "Allow",
"Principal": {
"AWS": "*"
},
"Action": "s3:GetObject",
@mdagent
mdagent / daaokc-custom-code.html
Created September 21, 2017 14:11
Custom Code for DAAOKC's Pipeline login form.
<script type="text/javascript">
var vAuction = 'DAAOKC';
</script>
<script type="text/javascript" src="*****YOUR-LINK-GOES-HERE*****"></script>