Skip to content

Commit

Permalink
Updated YAML Comments to include updated CUSTOM_PARAMS variable infor…
Browse files Browse the repository at this point in the history
…mation
  • Loading branch information
csnhawkins authored Dec 17, 2024
1 parent d7b4f4e commit bd9afef
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions AzureDevOps/AzureDevOps-Flyway-CICD-Pipeline_Windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,34 +13,27 @@ trigger: none
# Step 1: Stage Variables - So that all variables are kept secure, it's recommended that Library Variable Groups are used.
### Build Stage Variables - Create 'AutoPilotBuild' Variable Group ###
### To Create a Libary Variable Group, Click Pipelines > Library > + Variable Group ###
# "TARGET_DATABASE_URL" - Leave URL blank, by default, the database URL will be taken from the Flyway Project TOML file
# Example Value - jdbc:sqlserver://localhost;instanceName=SQLEXPRESS;databaseName=AutoPilotDev;encrypt=true;integratedSecurity=true;trustServerCertificate=true
# "TARGET_DATABASE_USERNAME"- Leave Username/Password values blank if integratedSecurity utilized (Which is default behaviour)
# "TARGET_DATABASE_PASSWORD" - Leave Username/Password values blank if integratedSecurity utilized (Which is default behaviour)
# CUSTOM_PARAMS: Optional - Used for passing custom Flyway Parameters to each Flyway command
### End of Build Stage Variable Group ###

### Test Stage Variables - Create 'AutoPilotTest' Variable Group ###
### To Create a Libary Variable Group, Click Pipelines > Library > + Variable Group ###
# "TARGET_DATABASE_URL" - Leave URL blank, by default, the database URL will be taken from the Flyway Project TOML file
# Example Value - jdbc:sqlserver://localhost;instanceName=SQLEXPRESS;databaseName=AutoPilotTest;encrypt=true;integratedSecurity=true;trustServerCertificate=true
# "TARGET_DATABASE_USERNAME" - Leave Username/Password values blank if integratedSecurity utilized (Which is default behaviour)
# "TARGET_DATABASE_PASSWORD" - Leave Username/Password values blank if integratedSecurity utilized (Which is default behaviour)
# "REPORT_DATABASE_URL" - Leave URL blank, by default, the database URL will be taken from the Flyway Project TOML file
# Example Value - jdbc:sqlserver://localhost;instanceName=SQLEXPRESS;databaseName=AutoPilotCheck;encrypt=true;integratedSecurity=true;trustServerCertificate=true
# "REPORT_DATABASE_USERNAME" - Leave Username/Password values blank if integratedSecurity utilized (Which is default behaviour)
# "REPORT_DATABASE_PASSWORD" - Leave Username/Password values blank if integratedSecurity utilized (Which is default behaviour)
# CUSTOM_PARAMS: Optional - Used for passing custom Flyway Parameters to each Flyway command
### End of Test Stage Variable Group ###

### Prod Stage Variables - Create 'AutoPilotProd' Variable Group ###
### To Create a Libary Variable Group, Click Pipelines > Library > + Variable Group ###
# "TARGET_DATABASE_URL" - Leave URL blank, by default, the database URL will be taken from the Flyway Project TOML file
# Example Value - jdbc:sqlserver://localhost;instanceName=SQLEXPRESS;databaseName=AutoPilotTest;encrypt=true;integratedSecurity=true;trustServerCertificate=true
# "TARGET_DATABASE_USERNAME" - Leave Username/Password values blank if integratedSecurity utilized (Which is default behaviour)
# "TARGET_DATABASE_PASSWORD" - Leave Username/Password values blank if integratedSecurity utilized (Which is default behaviour)
# "REPORT_DATABASE_URL" - Leave URL blank, by default, the database URL will be taken from the Flyway Project TOML file
# Example Value - jdbc:sqlserver://localhost;instanceName=SQLEXPRESS;databaseName=AutoPilotCheck;encrypt=true;integratedSecurity=true;trustServerCertificate=true
# "REPORT_DATABASE_USERNAME" - Leave Username/Password values blank if integratedSecurity utilized (Which is default behaviour)
# "REPORT_DATABASE_PASSWORD" - Leave Username/Password values blank if integratedSecurity utilized (Which is default behaviour)
# CUSTOM_PARAMS: Optional - Used for passing custom Flyway Parameters to each Flyway command
### End of Prod Stage Variable Group ###

pool:
Expand Down

0 comments on commit bd9afef

Please sign in to comment.