I am on 3.3.20 and am running into an issue with my json config transforms on arrays. I have tried to setup my variables like the foo:bar:1 example at the bottom of their documentation here https://octopus.com/docs/guides/deploying-asp.net-core-web-applications/json-configuration-variables-feature
Deployment Warning:
Unable to set value for ISeries:WebServices:RemoteBaseUrls:0. The property at ISeries.WebServices.RemoteBaseUrls is a Array.
Unable to set value for ISeries:WebServices:RemoteBaseUrls:1. The property at ISeries.WebServices.RemoteBaseUrls is a Array.
Unable to set value for ISeries:WebServices:RemoteBaseUrls:2. The property at ISeries.WebServices.RemoteBaseUrls is a Array.
Project Variables: Array Variables
Config file:
{
"Logging": {
"IncludeScopes": false,
"LogLevel": {
"Default": "Warning"
}
},
"ISeries": {
"WebServices": {
"RemoteBaseUrls": [
"http://1.1.1.1:11111/web/services/",
"http://1.1.1.1:22222/web/services/",
"http://1.1.1.1:33333/web/services/"
]
}
}
}