ec2:describeinstances

Full name:

org.kuali.maven.plugins:ec2-maven-plugin:1.1.1:describeinstances

Description:

Connect to EC2 and list instances associated with this account

Attributes:

  • Requires a Maven project to be executed.

Required Parameters

Name Type Since Description
accessKey String - The AWS Access Key Id for an account on EC2
secretKey String - The AWS Secret Access Key for an account on EC2

Optional Parameters

Name Type Since Description
instanceIds List - A list of instance id's to display information about
tag String - The tag to display for each instance.
Default value is: Name.
tags List - List of tags. Tags are name/value pairs and can be supplied in the plugin configuration like this:
  <tags>
    <tag>
      <key>Name</key>
      <value>production</value>
    </tag>
    <tag>
      <key>Category</key>
      <value>networking</value>
    </tag>
  </tags>

Parameter Details

accessKey:

The AWS Access Key Id for an account on EC2
  • Type: java.lang.String
  • Required: Yes
  • Expression: ${ec2.accessKey}

instanceIds:

A list of instance id's to display information about
  • Type: java.util.List
  • Required: No

secretKey:

The AWS Secret Access Key for an account on EC2
  • Type: java.lang.String
  • Required: Yes
  • Expression: ${ec2.secretKey}

tag:

The tag to display for each instance.
  • Type: java.lang.String
  • Required: No
  • Expression: ${ec2.tag}
  • Default: Name

tags:

List of tags. Tags are name/value pairs and can be supplied in the plugin configuration like this:
  <tags>
    <tag>
      <key>Name</key>
      <value>production</value>
    </tag>
    <tag>
      <key>Category</key>
      <value>networking</value>
    </tag>
  </tags>
  • Type: java.util.List
  • Required: No