Hi there,
I’m using the Octopus Deploy Extension in Azure ARM templates to configure the server in octopus with the relevant tags. I’ve been able to add the tenant tags to the server but struggling to add a couple more that we have in the Associated Tenants section of the server.
Here’s my extension config so far but stumped on getting the CRM deploy and Target App Server added.
{
"name": "Octopus.Tentacle",
"properties": {
"publisher": "OctopusDeploy.Tentacle",
"type": "OctopusDeployWindowsTentacle",
"typeHandlerVersion": "2.0",
"autoUpgradeMinorVersion": true,
"settings": {
"OctopusServerUrl": "https://myurl",
"Environments": [
"Azure Test"
],
"Roles": [
"myapp1",
"myapp2",
"myapp3"
],
"CommunicationMode": "Poll",
"MachinePolicy": "Default Machine Policy",
"Port": 10943,
"Tenants": [
"tenant1",
"tenant2",
"tenant3"
]
},
"protectedSettings": {
"ApiKey": "myapp2MYAPIKEY"
}
}
Had a look through these links with no success: