|
|
|
@ -161,36 +161,39 @@ dns_azure_rm() {
|
|
|
|
|
if [ "$AZUREDNS_MANAGEDIDENTITY" = true ]; then
|
|
|
|
|
_info "Using Azure managed identity"
|
|
|
|
|
else
|
|
|
|
|
_info "You didn't ask to use Azure managed identity, checking service principal credentials"
|
|
|
|
|
_info "You didn't ask to use Azure managed identity, checking service principal credentials or provided bearer token"
|
|
|
|
|
AZUREDNS_TENANTID="${AZUREDNS_TENANTID:-$(_readaccountconf_mutable AZUREDNS_TENANTID)}"
|
|
|
|
|
AZUREDNS_APPID="${AZUREDNS_APPID:-$(_readaccountconf_mutable AZUREDNS_APPID)}"
|
|
|
|
|
AZUREDNS_CLIENTSECRET="${AZUREDNS_CLIENTSECRET:-$(_readaccountconf_mutable AZUREDNS_CLIENTSECRET)}"
|
|
|
|
|
if [ -z "$AZUREDNS_BEARERTOKEN" ]; then
|
|
|
|
|
if [ -z "$AZUREDNS_TENANTID" ]; then
|
|
|
|
|
AZUREDNS_SUBSCRIPTIONID=""
|
|
|
|
|
AZUREDNS_TENANTID=""
|
|
|
|
|
AZUREDNS_APPID=""
|
|
|
|
|
AZUREDNS_CLIENTSECRET=""
|
|
|
|
|
_err "You didn't specify the Azure Tenant ID "
|
|
|
|
|
return 1
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
if [ -z "$AZUREDNS_TENANTID" ]; then
|
|
|
|
|
AZUREDNS_SUBSCRIPTIONID=""
|
|
|
|
|
AZUREDNS_TENANTID=""
|
|
|
|
|
AZUREDNS_APPID=""
|
|
|
|
|
AZUREDNS_CLIENTSECRET=""
|
|
|
|
|
_err "You didn't specify the Azure Tenant ID "
|
|
|
|
|
return 1
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
if [ -z "$AZUREDNS_APPID" ]; then
|
|
|
|
|
AZUREDNS_SUBSCRIPTIONID=""
|
|
|
|
|
AZUREDNS_TENANTID=""
|
|
|
|
|
AZUREDNS_APPID=""
|
|
|
|
|
AZUREDNS_CLIENTSECRET=""
|
|
|
|
|
_err "You didn't specify the Azure App ID"
|
|
|
|
|
return 1
|
|
|
|
|
fi
|
|
|
|
|
if [ -z "$AZUREDNS_APPID" ]; then
|
|
|
|
|
AZUREDNS_SUBSCRIPTIONID=""
|
|
|
|
|
AZUREDNS_TENANTID=""
|
|
|
|
|
AZUREDNS_APPID=""
|
|
|
|
|
AZUREDNS_CLIENTSECRET=""
|
|
|
|
|
_err "You didn't specify the Azure App ID"
|
|
|
|
|
return 1
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
if [ -z "$AZUREDNS_CLIENTSECRET" ]; then
|
|
|
|
|
AZUREDNS_SUBSCRIPTIONID=""
|
|
|
|
|
AZUREDNS_TENANTID=""
|
|
|
|
|
AZUREDNS_APPID=""
|
|
|
|
|
AZUREDNS_CLIENTSECRET=""
|
|
|
|
|
_err "You didn't specify the Azure Client Secret"
|
|
|
|
|
return 1
|
|
|
|
|
if [ -z "$AZUREDNS_CLIENTSECRET" ]; then
|
|
|
|
|
AZUREDNS_SUBSCRIPTIONID=""
|
|
|
|
|
AZUREDNS_TENANTID=""
|
|
|
|
|
AZUREDNS_APPID=""
|
|
|
|
|
AZUREDNS_CLIENTSECRET=""
|
|
|
|
|
_err "You didn't specify the Azure Client Secret"
|
|
|
|
|
return 1
|
|
|
|
|
fi
|
|
|
|
|
else
|
|
|
|
|
_info "Using provided bearer token"
|
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
@ -199,7 +202,7 @@ dns_azure_rm() {
|
|
|
|
|
else
|
|
|
|
|
accesstoken=$(echo "$AZUREDNS_BEARERTOKEN" | sed "s/Bearer //g")
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if ! _get_root "$fulldomain" "$AZUREDNS_SUBSCRIPTIONID" "$accesstoken"; then
|
|
|
|
|
_err "invalid domain"
|
|
|
|
|
return 1
|
|
|
|
|