Sha256: 48deeab7b0804a6d78dfb0f97f82c9a0087c4d36e66575b99a8918c0da0cc4a5

Contents?: true

Size: 1.75 KB

Versions: 95

Compression:

Stored size: 1.75 KB

Contents

{
  "id": "partial:target-winrm",
  "$schema": "http://json-schema.org/draft-04/schema",
  "title": "Target information about where to run a bolt action over WinRM",
  "type": "object",
  "properties": {
    "hostname": {
      "type": "string",
      "description": "Target identifier"
    },
    "user": {
      "type": "string",
      "description": "Login user"
    },
    "password": {
      "type": "string",
      "description": "Password for WinRM transport authentication"
    },
    "port": {
      "type": "integer",
      "description": "Connection port"
    },
    "connect-timeout": {
      "type": "integer",
      "description": "How long Bolt should wait when establishing connections"
    },
    "tmpdir": {
      "type": "string",
      "description": "The directory to upload and execute temporary files on the target"
    },
    "ssl": {
      "type": "boolean",
      "description": "When true, Bolt will use https connections for WinRM"
    },
    "ssl-verify": {
      "type": "boolean",
      "description": "When true, verifies the targets certificate matches the cacert"
    },
    "cacert": {
      "type": "string",
      "description": "The path to the CA certificate"
    },
    "extensions": {
      "type": "array",
      "description": "List of file extensions that are accepted for scripts or tasks"
    },
    "interpreters": {
      "type": "object",
      "description": "Map of file extensions to remote executable"
    },
    "file-protocol": {
      "type": "string",
      "enum": ["winrm", "smb"],
      "description": "Protocol for file transfer, WinRM or SMB"
    },
    "smb-port": {
      "type": "integer",
      "description": "Port for SMB protocol"
    }
  },
  "required": ["hostname", "user", "password"],
  "additionalProperties": false
}

Version data entries

95 entries across 95 versions & 1 rubygems

Version Path
bolt-3.13.0 lib/bolt_server/schemas/partials/target-winrm.json
bolt-3.12.0 lib/bolt_server/schemas/partials/target-winrm.json
bolt-3.11.0 lib/bolt_server/schemas/partials/target-winrm.json
bolt-3.10.0 lib/bolt_server/schemas/partials/target-winrm.json
bolt-3.9.2 lib/bolt_server/schemas/partials/target-winrm.json
bolt-3.9.1 lib/bolt_server/schemas/partials/target-winrm.json
bolt-3.9.0 lib/bolt_server/schemas/partials/target-winrm.json
bolt-3.8.1 lib/bolt_server/schemas/partials/target-winrm.json
bolt-3.8.0 lib/bolt_server/schemas/partials/target-winrm.json
bolt-3.7.1 lib/bolt_server/schemas/partials/target-winrm.json
bolt-3.7.0 lib/bolt_server/schemas/partials/target-winrm.json
bolt-3.6.1 lib/bolt_server/schemas/partials/target-winrm.json
bolt-3.6.0 lib/bolt_server/schemas/partials/target-winrm.json
bolt-3.5.0 lib/bolt_server/schemas/partials/target-winrm.json
bolt-3.4.0 lib/bolt_server/schemas/partials/target-winrm.json
bolt-3.3.0 lib/bolt_server/schemas/partials/target-winrm.json
bolt-3.1.0 lib/bolt_server/schemas/partials/target-winrm.json
bolt-3.0.1 lib/bolt_server/schemas/partials/target-winrm.json
bolt-3.0.0 lib/bolt_server/schemas/partials/target-winrm.json
bolt-2.44.0 lib/bolt_server/schemas/partials/target-winrm.json