heat-templates/hot/Windows/PuppetAgent/PuppetAgent.ps1
Adrian Vladu 5e05ee4d17 Added Puppet Agent HOT
It deploys an instance with the latest Puppet Windows Agent.
The Puppet Agent installer is downloaded from the puppetlabs.com

The unit tests for the powershell module(user data scripts) are written
using Pester 3.0

Change-Id: Ia9449ad52e02622d41724c2b6c0680d1066d60e6
Partially-Implements: blueprint windows-instances
2014-10-14 22:46:14 -07:00

33 lines
1.3 KiB
PowerShell

#ps1_sysnative
# Copyright 2014 Cloudbase Solutions Srl
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
$ErrorActionPreference = 'Stop'
$moduleName = "PuppetAgent.psm1"
$cfnFolder = "C:\cfn"
$modulePath = Join-Path $cfnFolder $moduleName
Import-Module -Name $modulePath -DisableNameChecking -Force
$puppetMasterServerName = "puppet_master_server_hostname"
$puppetMasterServerIp = "puppet_master_server_ip_address"
$puppetAgent_WaitConditionEndpoint = "puppet_agent_wait_condition_endpoint"
$puppetAgent_WaitConditionToken = "puppet_agent_wait_condition_token"
Install-PuppetAgent -PuppetMasterServerName $puppetMasterServerName `
-PuppetMasterServerIp $puppetMasterServerIp `
-PuppetAgent_WaitConditionEndpoint $puppetAgent_WaitConditionEndpoint `
-PuppetAgent_WaitConditionToken $puppetAgent_WaitConditionToken