- 11 Mar 2024
-
DarkLight
-
PDF
Pronghorn Core
- Updated on 11 Mar 2024
-
DarkLight
-
PDF
Removal of alarmProps as an Object
Setting the alarmProps
property in the IAP Profile as an Object for single alarm locations is no longer supported; it was deprecated in 2021.1 and removed in the 2022.1 release. The preferred configuration for alarmProps
is an array with either a single Object (single alarm location) or multiple Objects (multi-alarm locations).
Single location:
{
"alarmProps": [ { ... } ]
}
Multiple locations:
{
"alarmProps": [ { ... }, { ... } ]
}
What Should I Do?
At startup, all instances of alarmProps
will be migrated to an array of objects instead of the singular object. In the rare circumstance this can occur, please update any scripts that continue to use the object notation to now enclose that object in an array.
$SECRET Encryption Replaces $ENC Encryption
The $ENC
encryption used within service configs, profiles, and the properties.json was deprecated in 2020.2. The replacement is $SECRET_
followed by the path used in Hashicorp Vault for encryption and decryption. Support for $ENC
will be removed in a future release, and any remaining $ENC
values will no longer function after its removal.