Skip to content

Commit

Permalink
Fix pipeline scripts reference to subscription-ci (Azure#207)
Browse files Browse the repository at this point in the history
  • Loading branch information
skeeler authored Mar 5, 2022
1 parent 5753cf0 commit 678355f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/onboarding/azure-devops-scripts.md
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ Run the `create-pipelines.bat` script to create the landing zone pipelines:
- platform-connectivity-hub-nva-ci
- platform-connectivity-hub-azfw-ci
- platform-connectivity-hub-azfw-policy-ci
- subscriptions-ci
- subscription-ci

If you would rather perform these steps manually, detailed guidance is available in the following sections of the [Azure DevOps Pipelines Onboarding Guide](./azure-devops-pipelines.md):

Expand Down Expand Up @@ -296,7 +296,7 @@ Detailed guidance on these configuration requirements is available in the [Azure

### Run pipelines

Run the `run-pipelines.bat` script to interactively run individual landing zone pipelines. Note that at present time the `subscriptions-ci` pipeline is not included in the list of runnable pipelines as the script requires additional work to enable that capability.
Run the `run-pipelines.bat` script to interactively run individual landing zone pipelines. Note that at present time the `subscription-ci` pipeline is not included in the list of runnable pipelines as the script requires additional work to enable that capability.

### Clear environment variables used by scripts

Expand Down
2 changes: 1 addition & 1 deletion scripts/onboarding/create-pipelines.bat
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ choice /C YN /M "Do you want to proceed?"
if errorlevel 2 exit /b 0

REM Process all pipeline definitions
for %%N in (management-groups roles platform-logging policy platform-connectivity-hub-nva platform-connectivity-hub-azfw platform-connectivity-hub-azfw-policy subscriptions) do (
for %%N in (management-groups roles platform-logging policy platform-connectivity-hub-nva platform-connectivity-hub-azfw platform-connectivity-hub-azfw-policy subscription) do (

REM Check for pipeline existence
set FOUND=
Expand Down
2 changes: 1 addition & 1 deletion scripts/onboarding/delete-pipelines.bat
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ choice /C YN /M "Do you want to proceed?"
if errorlevel 2 exit /b 0

REM Process all pipeline definitions
for %%N in (management-groups roles platform-logging policy platform-connectivity-hub-nva platform-connectivity-hub-azfw platform-connectivity-hub-azfw-policy subscriptions) do (
for %%N in (management-groups roles platform-logging policy platform-connectivity-hub-nva platform-connectivity-hub-azfw platform-connectivity-hub-azfw-policy subscription) do (
echo.
echo Deleting pipeline [%%N]...
echo.
Expand Down
2 changes: 1 addition & 1 deletion scripts/onboarding/run-pipelines.bat
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ set PIPELINE=platform-connectivity-hub-azfw-policy%DEVOPS_PIPELINE_NAME_SUFFIX%
goto :RunPipeline

:case_8
set PIPELINE=subscriptions%DEVOPS_PIPELINE_NAME_SUFFIX%
set PIPELINE=subscription%DEVOPS_PIPELINE_NAME_SUFFIX%
echo.
echo Running the [%PIPELINE%] pipeline from this script is not supported at this time.
goto :Prompt
Expand Down

0 comments on commit 678355f

Please sign in to comment.