NetworkAttachedDataNetwork

class NetworkAttachedDataNetwork : KotlinCustomResource

Manages a Mobile Network Attached Data Network.

Example Usage

resources:
example:
type: azure:core:ResourceGroup
properties:
name: example-resources
location: West Europe
exampleDevice:
type: azure:databoxedge:Device
name: example
properties:
name: example-device
resourceGroupName: ${example.name}
location: ${example.location}
skuName: EdgeP_Base-Standard
exampleNetwork:
type: azure:mobile:Network
name: example
properties:
name: example-mn
resourceGroupName: ${example.name}
location: ${example.location}
mobileCountryCode: '001'
mobileNetworkCode: '01'
exampleNetworkPacketCoreControlPlane:
type: azure:mobile:NetworkPacketCoreControlPlane
name: example
properties:
name: example-mnpccp
resourceGroupName: ${example.name}
location: West Europe
sku: G0
mobileNetworkId: ${exampleNetwork.id}
controlPlaneAccessName: default-interface
controlPlaneAccessIpv4Address: 192.168.1.199
controlPlaneAccessIpv4Gateway: 192.168.1.1
controlPlaneAccessIpv4Subnet: 192.168.1.0/25
platform:
type: AKS-HCI
edgeDeviceId: ${exampleDevice.id}
exampleNetworkPacketCoreDataPlane:
type: azure:mobile:NetworkPacketCoreDataPlane
name: example
properties:
name: example-mnpcdp
mobileNetworkPacketCoreControlPlaneId: ${exampleNetworkPacketCoreControlPlane.id}
location: ${example.location}
userPlaneAccessName: default-interface
userPlaneAccessIpv4Address: 192.168.1.199
userPlaneAccessIpv4Gateway: 192.168.1.1
userPlaneAccessIpv4Subnet: 192.168.1.0/25
exampleNetworkDataNetwork:
type: azure:mobile:NetworkDataNetwork
name: example
properties:
name: example-data-network
mobileNetworkId: ${exampleNetwork.id}
location: ${example.location}
exampleNetworkAttachedDataNetwork:
type: azure:mobile:NetworkAttachedDataNetwork
name: example
properties:
mobileNetworkDataNetworkName: ${exampleNetworkDataNetwork.name}
mobileNetworkPacketCoreDataPlaneId: ${exampleNetworkPacketCoreDataPlane.id}
location: ${example.location}
dnsAddresses:
- 1.1.1.1
userEquipmentAddressPoolPrefixes:
- 2.4.1.0/24
userEquipmentStaticAddressPoolPrefixes:
- 2.4.2.0/24
userPlaneAccessName: test
userPlaneAccessIpv4Address: 10.204.141.4
userPlaneAccessIpv4Gateway: 10.204.141.1
userPlaneAccessIpv4Subnet: 10.204.141.0/24
networkAddressPortTranslation:
pinholeMaximumNumber: 65536
icmpPinholeTimeoutInSeconds: 30
tcpPinholeTimeoutInSeconds: 100
udpPinholeTimeoutInSeconds: 39
portRange:
maximum: 49999
minimum: 1024
tcpPortReuseMinimumHoldTimeInSeconds: 120
udpTcpPortReuseMinimumHoldTimeInSeconds: 60
tags:
key: value

API Providers

This resource uses the following Azure API Providers:

  • Microsoft.MobileNetwork: 2022-11-01

Import

Mobile Network Attached Data Network can be imported using the resource id, e.g.

$ pulumi import azure:mobile/networkAttachedDataNetwork:NetworkAttachedDataNetwork example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup1/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/packetCoreControlPlane1/packetCoreDataPlanes/packetCoreDataPlane1/attachedDataNetworks/attachedDataNetwork1

Properties

Link copied to clipboard
val dnsAddresses: Output<List<String>>

Specifies the DNS servers to signal to UEs to use for this attached data network.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val location: Output<String>

Specifies the Azure Region where the Mobile Network Attached Data Network should exist. Changing this forces a new Mobile Network Attached Data Network to be created.

Link copied to clipboard

Specifies the name of the azure.mobile.NetworkDataNetwork which the Attached Data Network belongs to, Changing this forces a new Mobile Network Attached Data Network to be created.

Link copied to clipboard

Specifies the ID of the azure.mobile.NetworkPacketCoreDataPlane which the Mobile Network Attached Data Network belongs to. Changing this forces a new Mobile Network Attached Data Network to be created.

Link copied to clipboard

A network_address_port_translation block as defined below.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val tags: Output<Map<String, String>>?

A mapping of tags which should be assigned to the Mobile Network Attached Data Network.

Link copied to clipboard
val urn: Output<String>
Link copied to clipboard

Specifies the user equipment (UE) address pool prefixes for the attached data network from which the packet core instance will dynamically assign IP addresses to UEs. The packet core instance assigns an IP address to a UE when the UE sets up a PDU session. At least one of user_equipment_address_pool_prefixes and user_equipment_static_address_pool_prefix. If you define both, they must be of the same size.

Link copied to clipboard

Specifies the user equipment (UE) address pool prefixes for the attached data network from which the packet core instance will assign static IP addresses to UEs. The packet core instance assigns an IP address to a UE when the UE sets up a PDU session. The static IP address for a specific UE is set in StaticIPConfiguration on the corresponding SIM resource. At least one of user_equipment_address_pool_prefix and user_equipment_static_address_pool_prefixes. If you define both, they must be of the same size.

Link copied to clipboard

The IPv4 address for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.

Link copied to clipboard

The default IPv4 gateway for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.

Link copied to clipboard

The IPv4 subnet for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.

Link copied to clipboard

Specifies the logical name for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.