40 lines
993 B
YAML
40 lines
993 B
YAML
# RDP Broker - Target Configuration
|
|
# This file defines the available RDP targets that users can connect to
|
|
|
|
targets:
|
|
# Windows Server 01 - Production Web Server
|
|
- name: "Windows Server 01"
|
|
host: "192.168.1.10"
|
|
port: 3389
|
|
description: "Production Web Server"
|
|
|
|
# Windows Server 02 - Database Server
|
|
- name: "Windows Server 02"
|
|
host: "192.168.1.11"
|
|
port: 3389
|
|
description: "Database Server"
|
|
|
|
# Development Desktop
|
|
- name: "Development Desktop"
|
|
host: "192.168.100.135"
|
|
port: 3389
|
|
description: "Developer Workstation"
|
|
|
|
# Windows Server 03 - Application Server
|
|
- name: "Windows Server 03"
|
|
host: "192.168.1.20"
|
|
port: 3389
|
|
description: "Application Server"
|
|
|
|
# Terminal Server
|
|
- name: "Terminal Server"
|
|
host: "ts01.example.com"
|
|
port: 3389
|
|
description: "Shared Terminal Server"
|
|
|
|
# Test Environment
|
|
- name: "Test Server"
|
|
host: "192.168.100.50"
|
|
port: 3389
|
|
description: "Testing and QA Environment"
|