You can quickly add a property group to different Automation Assembler designs, which saves the time of adding the same multiple properties one by one. In addition, you have a single place to maintain or modify the set of properties, which ensures their consistent application.
Constant property groups silently apply known properties. In effect, constant property groups are invisible metadata. They provide values to your Automation Assembler designs in a way that prevents a requesting user from reading those values or even knowing that they’re present. Examples might include license keys or domain account credentials.
GitHub Repository: https://github.com/SimonSparksUK/Automation
Filename: pgConstantSecrets.json
{
"type":"CONSTANT",
"orgId":"--INSERT-YOUR-GUID-HERE--",
"name":"pgConstantSecrets",
"displayName":"Constant Secrets",
"description":"Constant Secrets",
"properties":{
"PasswordForRoot":{
"type":"string",
"encrypted":false,
"description":"Password For Root",
"const":"P@55w0rd!"
},
"PasswordForAdministrator":{
"type":"string",
"encrypted":false,
"description":"Password For Administrator",
"const":"P@55w0rd!"
}
}
}Discover more from Cloud Build Tools
Subscribe to get the latest posts sent to your email.
