Provided by: resource-agents_4.1.0~rc1-1ubuntu1.3_amd64
NAME
ocf_heartbeat_aws-vpc-route53 - Update Route53 VPC record for AWS EC2
SYNOPSIS
aws-vpc-route53 [start | stop | monitor | meta-data | validate-all]
DESCRIPTION
Update Route53 record of Amazon Webservices EC2 by updating an entry in a hosted zone ID table. AWS instances will require policies which allow them to update Route53 ARecords: { "Version": "2012-10-17", "Statement": [ { "Sid": "Stmt1471878724000", "Effect": "Allow", "Action": [ "route53:ChangeResourceRecordSets", "route53:GetChange", "route53:ListResourceRecordSets", ], "Resource": [ "*" ] } ] } Example Cluster Configuration: Use a configuration in "crm configure edit" which looks as follows. Replace hostedzoneid, fullname and profile with the appropriate values: primitive res_route53 ocf:heartbeat:aws-vpc-route53 params hostedzoneid=EX4MPL3EX4MPL3 fullname=service.cloud.example.corp. profile=cluster op start interval=0 timeout=180 op stop interval=0 timeout=180 op monitor interval=300 timeout=180 meta target-role=Started
SUPPORTED PARAMETERS
hostedzoneid Hosted zone ID of Route 53. This is the table of the Route 53 record. (required, string, no default) fullname The full name of the service which will host the IP address. Example: service.cloud.example.corp. Note: The trailing dot is important to Route53! (required, string, no default) ttl Time to live for Route53 ARECORD (optional, string, default "10") profile The name of the AWS CLI profile of the root account. This profile will have to use the "text" format for CLI output. The file /root/.aws/config should have an entry which looks like: [profile cluster] region = us-east-1 output = text "cluster" is the name which has to be used in the cluster configuration. The region has to be the current one. The output has to be "text". (required, string, no default)
SUPPORTED ACTIONS
This resource agent supports the following actions (operations): start Starts the resource. Suggested minimum timeout: 180. stop Stops the resource. Suggested minimum timeout: 180. monitor Performs a detailed status check. Suggested minimum timeout: 180. Suggested interval: 300. validate-all Performs a validation of the resource configuration. Suggested minimum timeout: 5. meta-data Retrieves resource agent metadata (internal use only). Suggested minimum timeout: 5.
EXAMPLE CRM SHELL
The following is an example configuration for a aws-vpc-route53 resource using the crm(8) shell: primitive p_aws-vpc-route53 ocf:heartbeat:aws-vpc-route53 \ params \ hostedzoneid=string \ fullname=string \ profile=string \ op monitor depth="0" timeout="180" interval="300"
EXAMPLE PCS
The following is an example configuration for a aws-vpc-route53 resource using pcs(8) pcs resource create p_aws-vpc-route53 ocf:heartbeat:aws-vpc-route53 \ hostedzoneid=string \ fullname=string \ profile=string \ op monitor depth="0" timeout="180" interval="300"
SEE ALSO
http://clusterlabs.org/
AUTHOR
ClusterLabs contributors (see the resource agent source for information about individual authors)