Skip to content

Commit 0054157

Browse files
author
Kimmo Forss
committed
Add troubleshooting steps for Private DNS Zone errors
1 parent 1cd03ba commit 0054157

1 file changed

Lines changed: 34 additions & 1 deletion

File tree

articles/sap/automation/troubleshooting.md

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,39 @@ az role assignment create --assignee ${appId} \
135135
--scope /subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
136136
```
137137

138+
### Private DNS Zone Name 'xxx' wasn't found
139+
140+
If you see an error similar to the following error when running the deployment:
141+
142+
```text
143+
Private DNS Zone Name: "privatelink.file.core.windows.net" was not found
144+
145+
or
146+
147+
Private DNS Zone Name: "privatelink.blob.core.windows.net" was not found
148+
149+
or
150+
151+
Private DNS Zone Name: "privatelink.vaultcore.azure.net" was not found
152+
153+
```
154+
155+
This error indicates that the Private DNS zone listed in the error isn't available. You can resolve this issue by either creating the Private DNS or providing the configuration for an existing private DNS Zone. For more information on how to create the Private DNS Zone, see [Create a private DNS zone](/azure/dns/private-dns-getstarted-cli#create-a-private-dns-zone).
156+
157+
You can specify the details for an existing private DNS zone by using the following variables:
158+
159+
```terraform
160+
# Resource group name for resource group that contains the private DNS zone
161+
management_dns_resourcegroup_name="<resource group name for the Private DNS Zone>"
162+
163+
# Subscription ID name for resource group that contains the private DNS zone
164+
management_dns_subscription_id="<subscription id for resource group name for the Private DNS Zone>"
165+
166+
use_custom_dns_a_registration=false
167+
168+
```
169+
170+
Rerun the deployment after you made these changes.
138171

139172
### OverconstrainedAllocationRequest error
140173
If you see an error similar to the following error when running the deployment:
@@ -170,7 +203,7 @@ If you see an error similar to the following message when running the deployment
170203
ERROR! this task 'ansible.builtin.command' has extra params, which is only allowed in the following modules: set_fact, shell, include_tasks, win_shell, import_tasks, import_role, include, win_command, command, include_role, meta, add_host, script, group_by, raw, include_vars
171204
```
172205

173-
This error indicates that the task isn't supported by the version of Ansible installed on the agent. To resolve this issue, upgrade to the latest version of Ansible on the agent virtual machine.
206+
This error indicates that the version of Ansible installed on the agent doesn't support this task. To resolve this issue, upgrade to the latest version of Ansible on the agent virtual machine.
174207

175208
## Software download
176209

0 commit comments

Comments
 (0)