examples/builtinSteps/BuildDeploy/deploy/tokens.ps1

<#
The MIT License (MIT)
 
Copyright (c) 2015 Objectivity Bespoke Software Specialists
 
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
 
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
 
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
#>


<#
This file contains tokens, i.e. variables that can be different across environments or nodes.
Resolved $Tokens variable is available in configurations (DSC and functions).
Tokens are inherited from parent environments, so e.g. all Tokens defined in 'Default' environment (default parent of all environments) are available in 'Local' environment,
and child tokens can override parent tokens.
 
If token value is a string, you can use placeholders ${TokenName} where TokenName is another token name, or predefined 'Node' (destination node name).
If token value is a scriptblock, you can use variables $Tokens, $Node and $Environment.
#>


Environment Default {

    Tokens WindowsFeaturesTestRole @{
        IsClientWindows = $true
        WindowsFeatures = 'IIS-WebServerRole', 'IIS-ASPNET45', 'IIS-WindowsAuthentication'
    }

    Tokens CustomWindowsFeatures @{
        IsClientWindows = $true
        WindowsFeatures = 'IIS-WebServerRole', 'IIS-ASPNET45', 'IIS-WindowsAuthentication'
    }

    Tokens UploadDirectoriesTestRole @{
        UploadDirectories = @{ 'UploadDirectoriesTest' = 'c:\PSCIUploadTest' }
    }

    Tokens IISConfigTestRole @{
        IISConfig = @{
            ApplicationPool = @( @{ Name = 'PSCITestAppPool1'; Identity = 'ApplicationPoolIdentity' },
                                 @{ Name = 'PSCITestAppPool2'; Identity = 'ApplicationPoolIdentity' }
                              )
            Website = @( @{ Name = 'PSCITestWebsite1'; Binding = @{ Port = 801 }; PhysicalPath = 'c:\inetpub\wwwroot\PSCITestWebsite'; ApplicationPool = 'PSCITestAppPool1' },
                         @{ Name = 'PSCITestWebsite2'; Binding = @{ Port = 802 }; PhysicalPath = 'c:\inetpub\wwwroot\PSCITestWebsite2'; ApplicationPool = 'PSCITestAppPool2' }
                           )
            WebApplication = @{ Name = 'PSCITestWebApp'; PhysicalPath = 'c:\inetpub\wwwroot\PSCIMyApp'; Website = 'PSCITestWebsite1'; ApplicationPool = 'PSCITestAppPool1' }
        }

    }
}

Environment Test {
    Tokens WindowsFeaturesTestRole @{
        IsClientWindows = $false
        WindowsFeatures = 'Web-Server', 'Web-Asp-Net45', 'Web-Windows-Auth'
    }

    Tokens CustomWindowsFeatures @{
        IsClientWindows = $false
        WindowsFeatures = 'Web-Server', 'Web-Asp-Net45', 'Web-Windows-Auth'
    }
}