New in version 2.0.
Parameter | Choices/Defaults | Comments |
---|---|---|
application
string
|
The application under which the virtual directory is created or exists.
|
|
name
string
/ required
|
The name of the virtual directory to create or remove.
|
|
physical_path
string
|
The physical path to the folder in which the new virtual directory is created.
The specified folder must already exist.
|
|
site
string
/ required
|
The site name under which the virtual directory is created or exists.
|
|
state
string
|
|
Whether to add or remove the specified virtual directory.
|
See also
The official documentation on the win_iis_webapplication module.
The official documentation on the win_iis_webapppool module.
The official documentation on the win_iis_webbinding module.
The official documentation on the win_iis_website module.
- name: Create a virtual directory if it does not exist
win_iis_virtualdirectory:
name: somedirectory
site: somesite
state: present
physical_path: C:\virtualdirectory\some
- name: Remove a virtual directory if it exists
win_iis_virtualdirectory:
name: somedirectory
site: somesite
state: absent
- name: Create a virtual directory on an application if it does not exist
win_iis_virtualdirectory:
name: somedirectory
site: somesite
application: someapp
state: present
physical_path: C:\virtualdirectory\some
This module is not guaranteed to have a backwards compatible interface. [preview]
This module is maintained by the Ansible Community. [community]
Henrik Wallström (@henrikwallstrom)
Hint
If you notice any issues in this documentation you can edit this document to improve it.