Use AWS_DNS_SLOWRATE env variable instead of arg

This commit is contained in:
Stephane Moser 2019-03-29 14:39:32 +00:00
parent 8902a5c5cd
commit ea6a3c0963
1 changed files with 6 additions and 1 deletions

View File

@ -18,7 +18,7 @@ AWS_WIKI="https://github.com/Neilpang/acme.sh/wiki/How-to-use-Amazon-Route53-API
dns_aws_add() {
fulldomain=$1
txtvalue=$2
slowrateslepp=$3
slowrateslepp=$AWS_DNS_SLOWRATE
AWS_ACCESS_KEY_ID="${AWS_ACCESS_KEY_ID:-$(_readaccountconf_mutable AWS_ACCESS_KEY_ID)}"
AWS_SECRET_ACCESS_KEY="${AWS_SECRET_ACCESS_KEY:-$(_readaccountconf_mutable AWS_SECRET_ACCESS_KEY)}"
@ -87,6 +87,7 @@ dns_aws_add() {
dns_aws_rm() {
fulldomain=$1
txtvalue=$2
slowrateslepp=$AWS_DNS_SLOWRATE
AWS_ACCESS_KEY_ID="${AWS_ACCESS_KEY_ID:-$(_readaccountconf_mutable AWS_ACCESS_KEY_ID)}"
AWS_SECRET_ACCESS_KEY="${AWS_SECRET_ACCESS_KEY:-$(_readaccountconf_mutable AWS_SECRET_ACCESS_KEY)}"
@ -121,6 +122,10 @@ dns_aws_rm() {
if aws_rest POST "2013-04-01$_domain_id/rrset/" "" "$_aws_tmpl_xml" && _contains "$response" "ChangeResourceRecordSetsResponse"; then
_info "TXT record deleted successfully."
if [ -n "$slowrateslepp" ]; then
_info "Slow rate activated: sleeping for $slowrateslepp seconds"
sleep $slowrateslepp
fi
return 0
fi