pull/5276/head
stbeldarborge 2024-09-02 15:56:12 +02:00
parent 1eaa2cc619
commit c7fb155733
No known key found for this signature in database
GPG Key ID: E2B7D4D531A7A945
1 changed files with 1 additions and 1 deletions

View File

@ -101,6 +101,7 @@ dns_azure_add() {
acmeRecordURI="https://management.azure.com$(printf '%s' "$_domain_id" | sed 's/\\//g')/TXT/$_sub_domain?api-version=2017-09-01"
_debug "$acmeRecordURI"
# Get existing TXT record
_debug "$acmeRecordURI $accesstoken"
_azure_rest GET "$acmeRecordURI" "" "$accesstoken"
values="{\"value\":[\"$txtvalue\"]}"
timestamp="$(_time)"
@ -126,7 +127,6 @@ dns_azure_add() {
# Add the txtvalue TXT Record
body="{\"properties\":{\"metadata\":{\"acmetscheck\":\"$timestamp\"},\"TTL\":10, \"TXTRecords\":[$values]}}"
_azure_rest PUT "$acmeRecordURI" "$body" "$accesstoken"
_debug "$acmeRecordURI $body $accesstoken"
if [ "$_code" = "200" ] || [ "$_code" = '201' ]; then
_info "validation value added"
return 0