indyaah / aws_codeartifact_maven

Support to update AWS CodeArtifact credentials on maven IDEA projects.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CodeArtifact+Maven Idea plugin

This plugin facilitates accessing and deploying artifacts in CodeArtifact on Maven Intellij Idea projects.

AWS provides very specific instructions to setup Maven to support AWS CodeArtifact. Basically, your file ~/.m2/settings.xml must include a server specification such as:

<settings>  
  <servers>  
    <server>  
      <id>coderazzi-project-yz</id>  
      <username>aws</username>  
      <password>${env.CODEARTIFACT_AUTH_TOKEN}</password>  
    </server>  
 </servers>  
</settings>

The token CODEARTIFACT_AUTH_TOKEN needs to be refreshed every 12 hours (by default) by doing:

export CODEARTIFACT_AUTH_TOKEN=`aws codeartifact get-authorization-token --domain DOMAIN --domain-owner DOMAIN_OWNER --query authorizationToken --output text`

After issuing the previous command, the environment that executes the command has authorized access to CodeCommit.

The main problem here is that when using an IDE like IDEA, you would need to update the CODEARTIFACT_AUTH_TOKEN environment variable and then launch the IDE. And as the token needs to be refreshed, it is needed to quit the IDE and repeat the process every 12 hours. Plus, it is needed to update the environment variable in the same environment where the IDE is launched, quite inconvenient if launching the IDE from anywhere except the command line.

Idea allows to setup environment variables for MVN execution (under Settings/Build/Execution/Deployment/Build Tools/Maven/Runner), but this would imply to manually obtaining the token and updating the setting periodically.

A better option for this specific scenario is to automatically update the password in ~/.m2/settings.xml, to reflect the real token. That is, the settings file will look like:

<settings>  
  <servers>  
    <server>  
      <id>coderazzi-project-yz</id>  
      <username>aws</username>  
      <password>REAL_CREDENTIALS_OBTAINED_FROM_AWS</password>  
    </server>  
 </servers>  
</settings>

CodeArtifact-Maven Idea plugin does exactly this simple task. Note that there is an AWS-supported AWS plugin, but it does not cover getting credentials for CodeArtifact

Usage

After installation, a menu entry appear under Tools: Generate AWS CodeArtifact credentials for Maven

When selected, a window appears to enter the required details:

  • Domain: the domain in AWS
  • Domain Owner: the account owner, something like 023174738914
  • Maven server id: the server name provided in your maven settings file -as following the instructions from AWS-. This is a value obtained already from the maven settings file, using all servers whose username is aws
  • AWS profile: the profile to use to obtain the credentials, obtained from any of the files <USER-HOME>/.aws/config, <USER-HOME>/.aws/credentials, <AWS_CONFIG_FILE>, <AWS_SHARED_CREDENTIALS_FILE>
  • Maven settings file: the location of the maven settings file, usually under ~/.m2
  • AWS cli path: the location of the aws executable, cabe specified as aws if it can be found in the path

The button Generate credentials will initiate the requests of a token to AWS and its inclusion in the maven settings file

Versions

  • Version 2.1.1 : 29th Jan 2022: if profile is default, do not include it when getting credentials.
  • Version 2.1.0 : 27th Jan 2022: Added AWS profile management.
  • Version 2.0.1 : 27th Nov 2021: Removed use of deprecated API, improved dialog layout.
  • Version 2.0.0 : 24th Nov 2021: Changed GUI to use dropdowns with serverIds extracted from maven settings file.
  • Version 1.1.1 : 23rd Sep 2021: solved bug: "Do not request resource from classloader using path with leading slash".
  • Version 1.1.0 : 19th Sep 2021: proper implementation of Cancel button.
  • Version 1.0.5 : 13th May 2021: corrected html tags on plugin description and readme.md files
  • Version 1.0.4 : 12th May 2021: removed missing image from plugin description.
  • Version 1.0.3 : 11th May 2021: compiled with JDK.
  • Version 1.0.2 : 10th May 2021: changed name to prefix it with AWS, to facilitate searches.
  • Version 1.0.1 : 10th May 2021: added AWS cli path

About

Support to update AWS CodeArtifact credentials on maven IDEA projects.

License:MIT License


Languages

Language:Java 100.0%