Configurations-OnPrem/ArcGISServerSettings.ps1
Configuration ArcGISServerSettings{ param( [Parameter(Mandatory=$true)] [ValidateNotNullorEmpty()] [System.Management.Automation.PSCredential] $SiteAdministratorCredential, [Parameter(Mandatory=$false)] [System.String] $PrimaryServerMachine, [Parameter(Mandatory=$false)] [System.String] $ExternalDNSHostName, [Parameter(Mandatory=$false)] [System.String] $ServerContext, [Parameter(Mandatory=$false)] [System.String] $InternalLoadBalancer ) Import-DscResource -ModuleName PSDesiredStateConfiguration Import-DSCResource -ModuleName @{ModuleName="ArcGIS";ModuleVersion="3.0.0"} Import-DscResource -Name ArcGIS_ServerSettings Node $AllNodes.NodeName { if($Node.Thumbprint){ LocalConfigurationManager { CertificateId = $Node.Thumbprint } } if($Node.NodeName -ieq $PrimaryServerMachine){ ArcGIS_ServerSettings ServerSettings { ServerHostName = Get-FQDN $PrimaryServerMachine SiteAdministrator = $SiteAdministratorCredential ExternalDNSName = $ExternalDNSHostName ServerContext = $ServerContext ServerEndPoint = if($InternalLoadBalancer){ $InternalLoadBalancer }else{ if($ExternalDNSHostName){ $ExternalDNSHostName }else{ $null } } ServerEndPointPort = if($InternalLoadBalancer){ 6443 }else{ 443 } ServerEndPointContext = if($InternalLoadBalancer){ 'arcgis' }else{ $ServerContext } } } } } |