Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This properties file uses Java properties file syntax. The key is the code of a property, the value is the value to use when overriding. Take a look at these examples:

Code Block
FDEBS_APPLICATION_SHORT_NAME=XXHR
FDEBS_SQL_RETRY_COUNT=25

Now when the EBS Plugin is executed against this endpoint, the value of FDEBS_APPLICATION_SHORT_NAME will be XXHR, and the value of FDEBS_SQL_RETRY_COUNT will be 25 no matter what value was set in FlexDeploy itself.

This will work for project properties, but for Target or Integration account properties there is a slightly different syntax. Put the code for that Target (or integration) a dot and then the name of the property. The value is the value that the property should be. See this example:

Code Block
EBS.FDEBS_DB_PASSWORD=databasepassword
MY_GIT_ACCOUNT.FDGIT_PASSWORD=gitpassword

Now the EBS password for the EBS Target and the git password for MY_GIT_ACCOUNT will be overridden.

This file is read in during each plugin execution, so no restart of the agent is required when updating the file.

...