Examples/QuickStartTemplate/QuickStartTemplate-Config.psd1

@{
    AllNodes = @(
        #Settings in this section will apply to all nodes.
        @{
            NodeName        = '*'

            #The path to the .cer file containing the public key of the Encryption
            #Certificate used to encrypt credentials for this node

            CertificateFile = 'C:\publickey.cer'


            #The thumbprint of the Encryption Certificate used to decrypt the credentials
            #on target node
            Thumbprint      = '98e1858ee4da01e4fb9f0519bc60d9c30f33b1c6' 
        }

        #Each individual server that will be configured needs to be defined next.
        @{
            NodeName = 'e15-1'
        }

        @{
            NodeName = 'e15-2'
        }
    );
}