From fae46498f2dc0d6bae3955a30365142c4119adc0 Mon Sep 17 00:00:00 2001 From: Richard Hansen Date: Thu, 19 Dec 2024 23:21:04 -0500 Subject: [PATCH] fixup! route53: Add support for Amazon AWS Route 53 wrap long lines --- ddclient.in | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/ddclient.in b/ddclient.in index 1788eba..82a4eed 100755 --- a/ddclient.in +++ b/ddclient.in @@ -1303,15 +1303,16 @@ our %protocols = ( %{$cfgvars{'protocol-common-defaults'}}, 'login' => undef, 'password' => undef, - # Hosted Zone Id (Required) found on the Hosted Zone you which to UPSERT onto within Route53 on AWS + # Hosted Zone Id (Required) found on the Hosted Zone you which to UPSERT onto within + # Route53 on AWS 'hosted-zone-id' => setv(T_STRING, 1, undef, undef), - # AWS Credentials (Required) (In the future may add STS support for more secure way to access) - # If these values are not within the config we will attempt to fetch them from the environment + # AWS Credentials (Required) (In the future may add STS support for more secure way to + # access) If these values are not within the config we will attempt to fetch them from + # the environment 'aws-secret-access-key' => setv(T_STRING, 1, undef, undef), 'aws-access-key-id' => setv(T_STRING, 1, undef, undef), - # Typically the 'global' region in AWS is interpreted as 'us-east-1' however it could change so - # please override if required - # AWS_REGION (Optional) + # Typically the 'global' region in AWS is interpreted as 'us-east-1' however it could + # change so please override if required AWS_REGION (Optional) 'aws-region' => setv(T_STRING, 0, 'us-east-1', undef), }, ),