Hi my organization currently has a three node deployment (datastore / Server / Portal) that we used the Powershell DSC to stand up. We have now been tasked with installing an additional server to serve as an image server. With that said I have two questions
- Can we add the image server as an additional node in "All Nodes" and run the DSC tool to install the image server?
- What Roles do we give that server in the JSON configuration file.
Here is the general construction I had started for the additional Image Server but I wanted to confirm if this is indeed the stuff I should be putting in the section
{
"NodeName": "NAME",
"Role": [
"Server"
],
"SslCertificates": [
{
"Path": "PATH",
"Password": "{SSL Password}",
"CNameFQDN": "FQDN",
"Target": [
"Server"
]
}
]
}