nilayparikh / s3up

A simple tool to deploy my static websites.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

s3up

A simple tool to deploy my static websites (work in progress).

Example IAM policy:

{
   "Version": "2012-10-17",
   "Statement":[
      {
         "Effect":"Allow",
         "Action":[
            "s3:ListBucket",
            "s3:GetBucketLocation"
         ],
         "Resource":"arn:aws:s3:::bucketname"
      },
      {
         "Effect":"Allow",
         "Action":[
            "s3:PutObject",
            "s3:PutObjectAcl",
            "s3:DeleteObject"
         ],
         "Resource":"arn:aws:s3:::bucketname/*"
      }
   ]
}

* replace bucketname with your own.

Alternatives

  • go3up by Alexandru Ungur

About

A simple tool to deploy my static websites.

License:BSD 2-Clause "Simplified" License


Languages

Language:Go 100.0%