AWS Maven plugin

Maven plugin for integrating AWS into the Maven lifecycle.

Лицензия

Лицензия

Категории

Категории

AWS Контейнер PaaS Providers Maven Компиляция и сборка
Группа

Группа

com.github.pimvoeten
Идентификатор

Идентификатор

aws-maven-plugin
Последняя версия

Последняя версия

1.2
Дата

Дата

Тип

Тип

maven-plugin
Описание

Описание

AWS Maven plugin
Maven plugin for integrating AWS into the Maven lifecycle.
Ссылка на сайт

Ссылка на сайт

https://github.com/pimvoeten/aws-maven-plugin
Система контроля версий

Система контроля версий

https://github.com/pimvoeten/aws-maven-plugin

Скачать aws-maven-plugin

Как подключить последнюю версию

<plugin>
    <groupId>com.github.pimvoeten</groupId>
    <artifactId>aws-maven-plugin</artifactId>
    <version>1.2</version>
</plugin>

Зависимости

compile (8)

Идентификатор библиотеки Тип Версия
org.apache.maven : maven-plugin-api jar 3.3.9
org.apache.maven : maven-core jar 3.3.9
org.apache.maven.shared : maven-shared-utils jar 3.2.1
org.apache.maven.shared : file-management jar 3.0.0
software.amazon.awssdk : sdk-core jar
software.amazon.awssdk : s3 jar
software.amazon.awssdk : elasticbeanstalk jar
software.amazon.awssdk : sts jar

provided (1)

Идентификатор библиотеки Тип Версия
org.apache.maven.plugin-tools : maven-plugin-annotations jar 3.5

test (5)

Идентификатор библиотеки Тип Версия
org.apache.maven.plugin-testing : maven-plugin-testing-harness jar 3.3.0
org.apache.maven : maven-model jar 3.3.9
org.apache.maven : maven-compat jar 3.3.9
junit : junit jar 4.12
ch.qos.logback : logback-classic jar 1.3.0-alpha4

Модули Проекта

Данный проект не имеет модулей.

aws-maven-plugin

This project is a Maven plugin to integrate AWS into the Maven lifecycle.

Credentials

AWS needs authentication which can be done in 3 ways:

  1. set the accessKey and secretKey in the pom
  2. set a profile in the pom. The profile can be configured using aws-cli aws configure (profiles and keys are stored in ~/.aws/credentials)
  3. default profile from aws-cli (no xml config needed)

Use of assumedRoles

Sometimes users can be given temporal permissions on a different account. This can be done by using assumedRoles. Configuration in the credentials files can look like this:

[usual-profile-name]
aws_access_key_id=...
aws_secret_access_key=...

[assumedrole-profile-name]
role_arn = <arn of role on different account>
source_profile = usual-profile-name

What will happen is that the assumed role is linked to the usual profile. The usual credentials are used to get a session token from STS, which is used to perform actions on that different account. In this setup use [assumedrole-profile-name] in the configuration.

General configuration

  <plugin>
    <groupId>com.github.pimvoeten</groupId>
    <artifactId>aws-maven-plugin</artifactId>
    <version>LATEST</version>
    <configuration>
      <!-- 1) Authenticate using keys -->
      <accessKey>ACCESS-KEY</accessKey>
      <secretKey>SECRET-KEY</secretKey>
      <region>AWS-REGION</region>

      <!-- 2) Authenticate by ~/.aws/credentials profile -->
      <profile>PROFILE-NAME</profile>

    </configuration>
  </plugin>
property
accessKey your AWS accessKey. required in combination with secretKey and region
secretKey your AWS secretKey required in combination with accesKey and region
region your AWS region required in combination with accessKey and secretKey
awsProfile The name of the profile from ~/.aws/credentials. Optional if you already logged in using aws configure

Goals

s3

putObject

  <plugin>
    <groupId>com.github.pimvoeten</groupId>
    <artifactId>aws-maven-plugin</artifactId>
    <version>LATEST</version>
    <executions>
        <execution>
            <id>upload to S3</id>
            <phase>install</phase>
            <goals>
                <goal>S3-putObject</goal>
            </goals>
            <configuration>
                <bucket>BUCKET-NAME</bucket>
                <path>PATH-IN-BUCKET</path>
                <createBucket>true</createBucket>
                <includeArtifact>false</includeArtifact>
                <filesets>
                    <fileset>
                        <directory>relative-path</directory>
                        <includes>
                            <include>**.*</include>
                        </includes>
                    </fileset>
                </filesets>
            </configuration>
        </execution>
    </executions>
  </plugin>
property
bucket The name of the AWS bucket to upload to. required
createBucket Create the bucket if it doesn't exist optional
path The path to upload to. Optional
includeArtifact Include the current projects artifact Optional
filesets Add extra files to upload by setting filesets Optional

Beanstalk

CreateApplicationVersion

Create a new application version in the Beanstalk environment.

  <plugin>
    <groupId>com.github.pimvoeten</groupId>
    <artifactId>aws-maven-plugin</artifactId>
    <version>LATEST</version>
    <executions>
        <execution>
            <id>Create new app version</id>
            <phase>deploy</phase>
            <goals>
                <goal>EB-CreateApplicationVersion</goal>
            </goals>
            <configuration>
                <bucket>BUCKET-NAME</bucket>
                <key>SOURCE-BUNDLE-KEY</key>
                <applicationName>APPLICATION-NAME</applicationName>
                <versionLabel>VERSION-LABEL</versionLabel>
                <description>DESCRIPTION</description>
            </configuration>
        </execution>
    </executions>
  </plugin>
property
bucket The name of the AWS bucket where the source bundle resides. required
key The key of the source bundle. required
applicationName The name of the application that is deployed required
versionLabel The version that is deployed required
description Extra description that can be added Optional

UpdateEnvironment

Deploy an application version to Beanstalk managed resources.

  <plugin>
    <groupId>com.github.pimvoeten</groupId>
    <artifactId>aws-maven-plugin</artifactId>
    <version>LATEST</version>
    <executions>
        <execution>
            <id>Update environment with new version</id>
            <phase>deploy</phase>
            <goals>
                <goal>EB-UpdateEnvironment</goal>
            </goals>
            <configuration>
                <applicationName>APPLICATION-NAME</applicationName>
                <versionLabel>VERSION-LABEL</versionLabel>
                <environmentName>ENVIRONMENT-NAME</environmentName>
            </configuration>
        </execution>
    </executions>
  </plugin>
property
applicationName The name of the application that is deployed required
versionLabel The version that is deployed required
environmentName Extra description that can be added Optional

Версии библиотеки

Версия
1.2
1.1
1.0
0.12