summaryrefslogtreecommitdiff
path: root/lib/ansible/modules/windows/win_iis_webapplication.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ansible/modules/windows/win_iis_webapplication.py')
-rw-r--r--lib/ansible/modules/windows/win_iis_webapplication.py99
1 files changed, 0 insertions, 99 deletions
diff --git a/lib/ansible/modules/windows/win_iis_webapplication.py b/lib/ansible/modules/windows/win_iis_webapplication.py
deleted file mode 100644
index 2fad6a4807..0000000000
--- a/lib/ansible/modules/windows/win_iis_webapplication.py
+++ /dev/null
@@ -1,99 +0,0 @@
-#!/usr/bin/python
-# -*- coding: utf-8 -*-
-
-# Copyright: (c) 2015, Henrik Wallström <henrik@wallstroms.nu>
-# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
-
-ANSIBLE_METADATA = {'metadata_version': '1.1',
- 'status': ['preview'],
- 'supported_by': 'community'}
-
-DOCUMENTATION = r'''
----
-module: win_iis_webapplication
-version_added: "2.0"
-short_description: Configures IIS web applications
-description:
-- Creates, removes, and configures IIS web applications.
-options:
- name:
- description:
- - Name of the web application.
- type: str
- required: yes
- site:
- description:
- - Name of the site on which the application is created.
- type: str
- required: yes
- state:
- description:
- - State of the web application.
- type: str
- choices: [ absent, present ]
- default: present
- physical_path:
- description:
- - The physical path on the remote host to use for the new application.
- - The specified folder must already exist.
- type: str
- application_pool:
- description:
- - The application pool in which the new site executes.
- - If not specified, the application pool of the current website will be used.
- type: str
- connect_as:
- description:
- - The type of authentication to use for this application. Either C(pass_through) or C(specific_user)
- - If C(pass_through), IIS will use the identity of the user or application pool identity to access the file system or network.
- - If C(specific_user), IIS will use the credentials provided in I(username) and I(password) to access the file system or network.
- type: str
- choices: [pass_through, specific_user]
- version_added: '2.10'
- username:
- description:
- - Specifies the user name of an account that can access configuration files and content for this application.
- - Required when I(connect_as) is set to C(specific_user).
- type: str
- version_added: '2.10'
- password:
- description:
- - The password associated with I(username).
- - Required when I(connect_as) is set to C(specific_user).
- type: str
- version_added: '2.10'
-seealso:
-- module: win_iis_virtualdirectory
-- module: win_iis_webapppool
-- module: win_iis_webbinding
-- module: win_iis_website
-author:
-- Henrik Wallström (@henrikwallstrom)
-'''
-
-EXAMPLES = r'''
-- name: Add ACME webapplication on IIS.
- win_iis_webapplication:
- name: api
- site: acme
- state: present
- physical_path: C:\apps\acme\api
-'''
-
-RETURN = r'''
-application_pool:
- description: The used/implemented application_pool value.
- returned: success
- type: str
- sample: DefaultAppPool
-physical_path:
- description: The used/implemented physical_path value.
- returned: success
- type: str
- sample: C:\apps\acme\api
-connect_as:
- description: How IIS will try to authenticate to the physical_path.
- returned: when the application exists
- type: str
- sample: specific_user
-'''