You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo "##vso[task.logissue type=error]RESOURCE_GROUP was not resolved. Verify apim-common defines APIM_RESOURCE_GROUP and is authorized for this pipeline."
79
+
exit 2
80
+
fi
81
+
82
+
if is_unresolved "$SERVICE_NAME"; then
83
+
echo "##vso[task.logissue type=error]SERVICE_NAME was not resolved. Verify apim-common defines APIM_SERVICE_NAME and is authorized for this pipeline."
84
+
exit 2
85
+
fi
86
+
87
+
if is_unresolved "$SERVICE_CONNECTION"; then
88
+
echo "##vso[task.logissue type=error]AZURE_SERVICE_CONNECTION was not resolved. Verify apim-common defines AZURE_SERVICE_CONNECTION and is authorized for this pipeline."
89
+
exit 2
90
+
fi
91
+
92
+
if is_unresolved "$SUBSCRIPTION_ID"; then
93
+
echo "##vso[task.logissue type=error]AZURE_SUBSCRIPTION_ID was not resolved. Verify apim-common defines AZURE_SUBSCRIPTION_ID and is authorized for this pipeline."
94
+
exit 2
95
+
fi
96
+
displayName: 'Validate required variables'
97
+
49
98
- task: AzureCLI@2
50
99
displayName: 'Run APIM Extract (All APIs)'
51
100
condition: eq('\${{ parameters.CONFIGURATION_YAML_PATH }}', 'Extract All APIs')
0 commit comments