Configuring Azure Virtual Network Gateway point-to-site configuration

Ansible Version: core 2.17.2

For Context, I’m attempting to automate an Azure lab build. Everything has gone well thus far. However, in Powershell When I run New-AzVirtualNetworkGateway I’m able to specify the point-to-site configuration.

Here is an example:

-VpnClientProtocol OpenVPN
-VpnClientAddressPool 192.168.1.0/24
-AadTenantUri "https://login.microsoftonline.com/[REDACTED]/"
-AadIssuerUri "https://sts.windows.net/[REDACTED]"
-AadAudienceId "[REDACTED]"

It appears that this is not possible from an Ansible Playbook with azure_rm_virtualnetworkgateway. Is this correct? It’s possible I’m missing something obvious and would appreciate a point in the right direction.

Thank You,

WiK