Mistuke / teamcity-s3-plugin

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TeamCity Plugin: Amazon S3 Uploader

This TeamCity plugin allows to upload content into different Amazon S3 buckets. It also allows to delete the existing content on the bucket before uploading.

As a Build Runner, it can be set up for each build configuration as a build step, allowing to define different users and/or buckets.

Introducing the plugin...

Amazon S3 Uploader Preview

This plugin has been tested on TeamCity 9.0.3+

Installing the Plugin

Before using the Plugin

  • An AWS User is needed. Refer to Amazon Creating IAM Users documentation to create a new user if needed and obtain credentials data.

  • Create a IAM Policy such as the following and attach the policy to the user created above. The following example shows the minimum permissions this plugin needs:

      {
          "Version": "2012-10-17",
          "Statement": [
              {
                  "Sid": "VisualEditor0",
                  "Effect": "Allow",
                  "Action": [
                      "s3:ListBucket",
                      "s3:ListBucketVersions",
                      "s3:PutObject",
                      "s3:DeleteObject",
                      "s3:DeleteObjectVersion",
                      "s3:DeleteObjectVersionTagging",
                      "s3:DeleteObjectTagging"
                  ],
                  "Resource": [
                      "arn:aws:s3:::bucketNameHere",
                      "arn:aws:s3:::bucketNameHere/*"
                  ]
              }
          ]
      }
    

Extending the Plugin

License

Copyright 2016 Gonzalo G. do Carmo Norte

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

About

License:Apache License 2.0


Languages

Language:Java 100.0%