Get information about a Mobile Network Sim Group.
data "azurerm_mobile_network" "example" {
name = "example-mn"
resource_group_name = azurerm_resource_group.example.name
}
data "azurerm_mobile_network_sim_group" "example" {
name = "example-mnsg"
mobile_network_id = data.azurerm_mobile_network.example.id
}
The following arguments are supported:
name
- (Required) Specifies the name which should be used for this Mobile Network Sim Groups.
mobile_network_id
- (Required) The ID of Mobile Network which the Mobile Network Sim Group belongs to.
In addition to the Arguments listed above - the following Attributes are exported:
id
- The ID of the Mobile Network Sim Groups.
location
- The Azure Region where the Mobile Network Sim Groups should exist.
encryption_key_url
- A key to encrypt the SIM data that belongs to this SIM group.
identity
- An identity
block as defined below.
tags
- A mapping of tags which should be assigned to the Mobile Network Sim Groups.An identity
block supports the following:
type
- The type of Managed Service Identity. Possible values are SystemAssigned
, UserAssigned
.
identity_ids
- A list of User Assigned Managed Identity IDs assigned to this resource.
The timeouts
block allows you to specify timeouts for certain actions:
read
- (Defaults to 5 minutes) Used when retrieving the Mobile Network Sim Groups.