From 38112e2dab2c4da23d674315752da50363d82cdb Mon Sep 17 00:00:00 2001 From: Dustin Taylor Date: Mon, 1 Jun 2020 13:16:38 -0400 Subject: [PATCH] Descriptions --- website/pages/docs/drivers/external/iis.mdx | 30 ++++++++++----------- 1 file changed, 14 insertions(+), 16 deletions(-) diff --git a/website/pages/docs/drivers/external/iis.mdx b/website/pages/docs/drivers/external/iis.mdx index 846b7dc5a..5c78258ca 100644 --- a/website/pages/docs/drivers/external/iis.mdx +++ b/website/pages/docs/drivers/external/iis.mdx @@ -37,26 +37,24 @@ task "iis-test" { The IIS task driver supports the following parameters: -- `path` - (Required) (Description). +- `path` - (Required) The path of the website directory. -- `site_config_path` - (Optional) (Description). - Defaults to (Default value). +- `site_config_path` - (Optional) The path should point to a valid IIS Site XML that is generated from an export. -- `apppool_config_path` - (Optional) (Description). - Defaults to (Default value). +- `apppool_config_path` - (Optional) The path should point to a valid IIS Application Pool XML that is generated from an export. -- `apppool_identity` - - `identity` - (Required) (Description). - - `username` - (Optional) (Description). Defaults to (Default value). - - `password` - (Optional) (Description). Defaults to (Default value). +- `apppool_identity` - (Optional) `ApplicationPoolIdentity` (default). The identity which the Application Pool will run under. + - `identity` - (Required) An identity is required to be set for Application Pools. Accepted inputs are `LocalService`, `LocalSystem`, `NetworkService`, `SpecificUser`, and `ApplicationPoolIdentity`. + - `username` - (Optional) If `SpecificUser` was chosen, then provide the username. + - `password` - (Optional) If `SpecificUser` was chosen, then provide the password. -- `bindings` - - `hostname` - (Optional) (Description). Defaults to (Default value). - - `ipaddress` - (Optional) (Description). Defaults to (Default value). - - `resource_port` - (Optional) (Description). Defaults to (Default value). - - `port` - (Optional) (Description). Defaults to (Default value). - - `type` - (Optional) (Description). Defaults to (Default value). - - `cert_hash` - (Optional) (Description). Defaults to (Default value). +- `bindings` - (Optional) Bindings set here will be set for IIS. + - `hostname` - (Optional) IIS hostname for a binding. + - `ipaddress` - (Optional). `*` (default). IIS allows a binding to specify the IP Address being sent out. + - `resource_port` - (Optional) Use a label from an established network stanza port. It is recommended to use this approach over using `port`. + - `port` - (Optional) Specify a static port to use for the website. A port must be specified between `resource_port` or `port`. Ports set this way will not be recognized by nomad. + - `type` - (Optional) Specificies which binding type IIS should use such as `http` or `https`. + - `cert_hash` - (Optional) For SSL support, supply the cert hash here of a cert installed on the system. ## Networking