Role to install Windows Remote Desktop Gateway Server and provide CAP and RAP
- Default Variables
- win_rdg_install_management_tools
- win_rdg_install_rdweb
- win_rdg_rds_cap_allow_only_sdrts_servers
- win_rdg_rds_cap_auth_method
- win_rdg_rds_cap_computer_groups
- win_rdg_rds_cap_idle_timeout
- win_rdg_rds_cap_name
- win_rdg_rds_cap_redirect_clipboard
- win_rdg_rds_cap_redirect_drives
- win_rdg_rds_cap_redirect_pnp
- win_rdg_rds_cap_redirect_printers
- win_rdg_rds_cap_redirect_serial
- win_rdg_rds_cap_session_timeout
- win_rdg_rds_cap_session_timeout_action
- win_rdg_rds_cap_state
- win_rdg_rds_cap_user_groups
- win_rdg_rds_rap_allowed_ports
- win_rdg_rds_rap_computer_group
- win_rdg_rds_rap_computer_group_type
- win_rdg_rds_rap_description
- win_rdg_rds_rap_name
- win_rdg_rds_rap_state
- win_rdg_rds_rap_user_groups
- Dependencies
- License
- Author
Install Windows Remote Desktop Gateway Management Tools
win_rdg_install_management_tools: true
Install Windows Remote Desktop Web Access Role
win_rdg_install_rdweb: false
Specifies whether connections are allowed only to Remote Desktop Session Host servers that enforce Remote Desktop Gateway redirection policy.
win_rdg_rds_cap_allow_only_sdrts_servers: no
Specifies how the RD Gateway server authenticates users. When a new CAP is created, the default value is password. Options: both, none, password, smartcard
win_rdg_rds_cap_auth_method: password
A list of computer groups that is allowed to connect to the Remote Gateway server.
win_rdg_rds_cap_computer_groups: []
Specifies the time interval, in minutes, after which an idle session is disconnected. A value of zero disables idle timeout.
win_rdg_rds_cap_idle_timeout: 0
Name of the connection authorization policy.
win_rdg_rds_cap_name: RDS_CAP
Allow clipboard redirection.
win_rdg_rds_cap_redirect_clipboard: yes
Allow disk drive redirection.
win_rdg_rds_cap_redirect_drives: yes
Allow Plug and Play devices redirection.
win_rdg_rds_cap_redirect_pnp: no
Allow printers redirection.
win_rdg_rds_cap_redirect_printers: no
Allow serial port redirection.
win_rdg_rds_cap_redirect_serial: no
The maximum time, in minutes, that a session can be idle. A value of zero disables session timeout.
win_rdg_rds_cap_session_timeout: 0
The action the server takes when a session times out. disconnect: disconnect the session. reauth: silently reauthenticate and reauthorize the session.
win_rdg_rds_cap_session_timeout_action: disconnect
The state of connection authorization policy. If absent
will ensure the policy is removed. If present
will ensure the policy is configured and exists. If enabled
will ensure the policy is configured, exists and enabled. If disabled
will ensure the policy is configured, exists, but disabled.
win_rdg_rds_cap_state: enabled
A list of user groups that is allowed to connect to the Remote Gateway server. Required when a new CAP is created.
win_rdg_rds_cap_user_groups: []
List of port numbers through which connections are allowed for this policy. To allow connections through any port, specify ‘any’.
win_rdg_rds_rap_allowed_ports:
- any
The computer group name that is associated with this resource authorization policy (RAP). This is required when computer_group_type is rdg_group or ad_network_resource_group.
The computer group type: rdg_group
: RD Gateway-managed group ad_network_resource_group
: Active Directory Domain Services network resource group allow_any
: Allow users to connect to any network resource.
win_rdg_rds_rap_computer_group_type: allow_any
Optional description of the resource authorization policy.
win_rdg_rds_rap_description: Allow all users to connect to any resource
Name of the resource authorization policy.
win_rdg_rds_rap_name: RDS_RAP
The state of resource authorization policy. If absent
will ensure the policy is removed. If present
will ensure the policy is configured and exists. If enabled
will ensure the policy is configured, exists and enabled. If disabled
will ensure the policy is configured, exists, but disabled.
win_rdg_rds_rap_state: enabled
List of user groups that are associated with this resource authorization policy (RAP). A user must belong to one of these groups to access the RD Gateway server. Required when a new RAP is created.
win_rdg_rds_rap_user_groups: []
None.
license (GPL-2.0-or-later, MIT, etc)
andif888