Target Property Variables
Target Properties are exposed as variables available in Workflow Editor (UI), Shell Plugins, and Script based plugins.
Variable Name | Description |
---|---|
<Target Group Code>_<Property Name> | Value of property defined on current environment and a particular Target Group. |
Properties on the current build/deploy target group do not need to be qualified with the Target Group code.
Unix or Windows Shell
The below snippet is an example of to get the FDSVN_URL property for the SAMPLEAPPS instance.
Use ${variable_name} to find value for specific instance.
myTG='SAMPLEAPPS'
myproperty='FDSVN_URL'
mydynamicvar=${myTG}_${myproperty}
SAMPLEAPPS_FDSVN_URL
echo ${mydynamicvar}
Groovy
Find value for specific instance
getProperty(propertyName)
Find property from currently executing instance
getProperty(FD_TARGET_GROUP_CODE + "_FDJDBC_USER")
Lookup a FDSVN_URL for SAMPLEAPPS instance
svnUrl=""; lookupkey="SAMPLEAPPS" + "_FDSVN_URL"; if (binding.variables.containsKey(lookupkey)) { svnUrl=getProperty(lookupkey);}; return svnUrl;
- style