Identity

The identity configuration for the application pool worker process.

DatacenterEnterpriseInfrastructureMicrosoftOperating SystemServer ManagementWindows ServerWindows Server 2025

Properties

Name Type Description
identity_type string The type of identity used by the application pool.
username string The username for the identity when using SpecificUser identity type.
load_user_profile boolean Whether to load the user profile for the worker process.
View JSON Schema on GitHub

JSON Schema

iis-administration-identity-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Identity",
  "type": "object",
  "description": "The identity configuration for the application pool worker process.",
  "properties": {
    "identity_type": {
      "type": "string",
      "description": "The type of identity used by the application pool."
    },
    "username": {
      "type": "string",
      "description": "The username for the identity when using SpecificUser identity type."
    },
    "load_user_profile": {
      "type": "boolean",
      "description": "Whether to load the user profile for the worker process."
    }
  }
}