You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/integration/targets/win_rds/templates/rds_base_cfg.xml.j2

58 lines
2.0 KiB
Plaintext

Add modules to manage Remote Desktop Services (#43406) * Add windows module win_rds_settings * Add windows module win_rds_rap * Add windows module win_rds_cap * Add tests for module win_rds_settings * Add tests for module win_rds_rap * Add tests for module win_rds_cap * Validate user and computer groups in module win_rds_cap * Validate user groups in module win_rds_rap * Support additional formats (UPN, Down-Level Login Name, SID and Login Name) for user and computer group names in module win_rds_cap * Support additional formats (UPN, Down-Level Login Name, SID and Login Name) for user group names in module win_rds_rap * Validate computer group parameter and support additional formats (UPN, Down-Level Login Name, SID and Login Name) in module win_rds_rap * Validate allowed ports parameter in module win_rds_rap * Ensure user group list is not empty in module win_rds_rap * Remove unwanted value in result object * Ensure user group list is not empty in module win_rds_cap * Ensure order parameter value never exceed the number of existing CAPs in module win_rds_cap * Add diff mode support to win_rds_cap * Add diff mode support to win_rds_rap * Add diff mode support to win_rds_settings * Add SSL bridging and messaging policy settings to module win_rds_settings * Fix copyright [skip ci] * Add missing trailing dots in documentation [skip ci] * Fix incorrect variable passed to Fail-Json * Minor changes and doc update * Avoid using Powershell aliases * Use WMI instead of PSProvider to handle group names to avoid conversion in UPN form * Use CIM instead of WMI cmdlets
6 years ago
<?xml version="1.0" encoding="UTF-16"?>
<?TSGateway version="1.0"?>
<TsgServer>
<ServerName>{{ ansible_hostname }}</ServerName>
<ServerSettings>
<MaxConnections>4294967295</MaxConnections>
<UnlimitedConnections>1</UnlimitedConnections>
<CentralCapEnabled>0</CentralCapEnabled>
<RequestSOH>0</RequestSOH>
<OnlyConsentCapableClients>0</OnlyConsentCapableClients>
<LogEvents>
<LogEvent>
<Name>LogChannelDisconnect</Name>
<Enabled>1</Enabled>
</LogEvent>
<LogEvent>
<Name>LogFailureChannelConnect</Name>
<Enabled>1</Enabled>
</LogEvent>
<LogEvent>
<Name>LogFailureConnectionAuthorizationCheck</Name>
<Enabled>1</Enabled>
</LogEvent>
<LogEvent>
<Name>LogFailureResourceAuthorizationCheck</Name>
<Enabled>1</Enabled>
</LogEvent>
<LogEvent>
<Name>LogSuccessfulChannelConnect</Name>
<Enabled>1</Enabled>
</LogEvent>
<LogEvent>
<Name>LogSuccessfulConnectionAuthorizationCheck</Name>
<Enabled>1</Enabled>
</LogEvent>
<LogEvent>
<Name>LogSuccessfulResourceAuthorizationCheck</Name>
<Enabled>1</Enabled>
</LogEvent>
</LogEvents>
<AuthenticationPlugin>native</AuthenticationPlugin>
<AuthorizationPlugin>native</AuthorizationPlugin>
<ConsentMessageText/>
<AdminMessageText/>
<AdminMsgStartDate/>
<AdminMsgEndDate/>
<SslBridging>0</SslBridging>
<HttpIPAddress>*</HttpIPAddress>
<UdpIPAddress>*</UdpIPAddress>
<HttpPort>443</HttpPort>
<UdpPort>3391</UdpPort>
<IsUdpEnabled>1</IsUdpEnabled>
<EnforceChannelBinding>1</EnforceChannelBinding>
</ServerSettings>
<Caps/>
<Raps/>
<ResourceGroups/>
</TsgServer>