Browse Source

transform record name to lower case when searching for TXT record

pull/5110/head
zak905 5 months ago
parent
commit
0974c74a89
  1. 3
      dnsapi/dns_ionos.sh

3
dnsapi/dns_ionos.sh

@ -207,6 +207,9 @@ _ionos_cloud_get_record() {
txtrecord=$2
fulldomain=$3
_record_name=$(printf "%s" "$fulldomain" | cut -d . -f 1)
# this is to transform record name to lower case
# IONOS Cloud API transforms all record names to lower case
_record_name=${_record_name@L}
_info "grepping with the following args: zone_id=$zone_id txtrecord=$txtrecord fulldomain=$fulldomain _record_name=$_record_name"

Loading…
Cancel
Save