Module for puppet that can be used to create sites, application pools and virtual applications with IIS 7 and above.
This module is only available to Windows Server 2008 and above due to using the WebAdministration module that ships with PowerShell. To use the module, use git clone to a directory in your modules folder on your puppetmaster. Then create a module manifest for the site you wish to maintain configuration for. Then you need to include this new module manifest in your nodes.pp file as follows:
node 'nodename' {
include 'mywebsite'
}
Please note, that you need to implement the iis class in your module as in the example below
class mywebsite {
iis::manage_app_pool {'my_application_pool':
enable_32_bit => true,
managed_runtime_version => 'v4.0',
}
iis::manage_site {'www.mysite.com':
site_path => 'C:\inetpub\wwwroot\mysite',
port => '80',
ip_address => '*',
host_header => 'www.mysite.com',
app_pool => 'my_application_pool'
}
iis::manage_virtual_application {'application1':
site_name => 'www.mysite.com',
site_path => 'C:\inetpub\wwwroot\application1',
app_pool => 'my_application_pool'
}
iis::manage_virtual_application {'application2':
site_name => 'www.mysite.com',
site_path => 'C:\inetpub\wwwroot\application2',
app_pool => 'my_application_pool'
}
}
This will result in an IIS Directory setup as follows:
- www.mysite.com
- Application1
- Application2
The module knows that if requesting a virtual application, then it will have to create a site and application pool in the correct order so that it can build the correct model. Further usage would be to include the values as specified in the iis class above from hiera configuration.
A default binding is setup using the values passed to the manage_site resource. Additional bindings can be added to a site using the manage_binding resource.
-- iis::manage_binding { 'www.mysite.com-port-8080': site_name => 'www.mysite.com', protocol => 'http', port => '8080', }
Host header and ip address can also be supplied.
-- iis::manage_binding { 'www.mysite.com-port-8080': site_name => 'www.mysite.com', protocol => 'http', port => '8080', ip_address => '192.168.0.1', host_header => 'mysite.com', }