Provided by: resource-agents_4.1.0~rc1-1ubuntu1.3_amd64 bug

NAME

       ocf_heartbeat_awseip - Amazon AWS Elastic IP Address Resource Agent

SYNOPSIS

       awseip [start | stop | monitor | migrate_to | migrate_from | meta-data | validate-all]

DESCRIPTION

       Resource Agent for Amazon AWS Elastic IP Addresses.

       It manages AWS Elastic IP Addresses with awscli.

       Credentials needs to be setup by running "aws configure".

       See https://aws.amazon.com/cli/ for more information about awscli.

       This resource agent may be configured for native migration if available in the cluster
       manager. For Pacemaker, the allow-migrate="true" meta attribute enables native migration.

SUPPORTED PARAMETERS

       awscli
           command line tools for aws services

           (optional, string, default "/usr/bin/aws")

       elastic_ip
           reserved elastic ip for ec2 instance

           (unique, required, string, no default)

       allocation_id
           reserved allocation id for ec2 instance

           (unique, required, string, no default)

       private_ip_address
           predefined private ip address for ec2 instance

           (unique, optional, string, no default)

       api_delay
           a short delay between API calls, to avoid sending API too quick

           (optional, integer, default 1)

SUPPORTED ACTIONS

       This resource agent supports the following actions (operations):

       start
           Starts the resource. Suggested minimum timeout: 10.

       stop
           Stops the resource. Suggested minimum timeout: 10.

       monitor
           Performs a detailed status check. Suggested minimum timeout: 10. Suggested interval:
           20.

       reload
           Suggested minimum timeout: 10.

       migrate_to
           Executes steps necessary for migrating the resource to the node. Suggested minimum
           timeout: 10.

       migrate_from
           Executes steps necessary for migrating the resource away from the node. Suggested
           minimum timeout: 10.

       meta-data
           Retrieves resource agent metadata (internal use only). Suggested minimum timeout: 5.

       validate
           Suggested minimum timeout: 10.

       validate-all
           Performs a validation of the resource configuration. Suggested minimum timeout: 10.

EXAMPLE CRM SHELL

       The following is an example configuration for a awseip resource using the crm(8) shell:

           primitive p_awseip ocf:heartbeat:awseip \
             params \
               elastic_ip=string \
               allocation_id=string \
             meta allow-migrate="true" \
             op monitor timeout="10" interval="20" depth="0"

EXAMPLE PCS

       The following is an example configuration for a awseip resource using pcs(8)

           pcs resource create p_awseip ocf:heartbeat:awseip \
             elastic_ip=string \
             allocation_id=string \
             op monitor timeout="10" interval="20" depth="0"

SEE ALSO

       http://clusterlabs.org/

AUTHOR

       ClusterLabs contributors (see the resource agent source for information about individual
       authors)