table of contents
OCF_HEARTBEAT_AWS-V(7) | OCF resource agents | OCF_HEARTBEAT_AWS-V(7) |
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¶
awscli
(optional, string, default "/usr/bin/aws")
profile
[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".
(optional, string, default "default")
hostedzoneid
(required, string, no default)
fullname
(required, string, no default)
ip
A secondary private IP can be setup with the awsvip agent.
(optional, string, default "local")
ttl
(optional, string, default "10")
SUPPORTED ACTIONS¶
This resource agent supports the following actions (operations):
start
stop
monitor
validate-all
meta-data
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 \
op monitor depth="0" timeout="180s" interval="300s"
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 \
op monitor depth="0" timeout="180s" interval="300s"
SEE ALSO¶
AUTHOR¶
ClusterLabs contributors (see the resource agent source for information about individual authors)
03/19/2024 | resource-agents UNKNOWN |