We recommend using Azure Native.
azure.mobile.NetworkSimGroup
Explore with Pulumi AI
Manages a Mobile Network Sim Group.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const exampleResourceGroup = new azure.core.ResourceGroup("example", {
name: "example-resources",
location: "West Europe",
});
const exampleNetwork = new azure.mobile.Network("example", {
name: "example-mn",
location: exampleResourceGroup.location,
resourceGroupName: exampleResourceGroup.name,
mobileCountryCode: "001",
mobileNetworkCode: "01",
});
const example = azure.authorization.getUserAssignedIdentity({
name: "name_of_user_assigned_identity",
resourceGroupName: "name_of_resource_group",
});
const exampleGetKeyVault = azure.keyvault.getKeyVault({
name: "example-kv",
resourceGroupName: "some-resource-group",
});
const exampleGetKey = exampleGetKeyVault.then(exampleGetKeyVault => azure.keyvault.getKey({
name: "example-key",
keyVaultId: exampleGetKeyVault.id,
}));
const exampleNetworkSimGroup = new azure.mobile.NetworkSimGroup("example", {
name: "example-mnsg",
location: exampleResourceGroup.location,
mobileNetworkId: exampleNetwork.id,
encryptionKeyUrl: exampleGetKey.then(exampleGetKey => exampleGetKey.id),
identity: {
type: "SystemAssigned, UserAssigned",
identityIds: [example.then(example => example.id)],
},
tags: {
key: "value",
},
});
import pulumi
import pulumi_azure as azure
example_resource_group = azure.core.ResourceGroup("example",
name="example-resources",
location="West Europe")
example_network = azure.mobile.Network("example",
name="example-mn",
location=example_resource_group.location,
resource_group_name=example_resource_group.name,
mobile_country_code="001",
mobile_network_code="01")
example = azure.authorization.get_user_assigned_identity(name="name_of_user_assigned_identity",
resource_group_name="name_of_resource_group")
example_get_key_vault = azure.keyvault.get_key_vault(name="example-kv",
resource_group_name="some-resource-group")
example_get_key = azure.keyvault.get_key(name="example-key",
key_vault_id=example_get_key_vault.id)
example_network_sim_group = azure.mobile.NetworkSimGroup("example",
name="example-mnsg",
location=example_resource_group.location,
mobile_network_id=example_network.id,
encryption_key_url=example_get_key.id,
identity=azure.mobile.NetworkSimGroupIdentityArgs(
type="SystemAssigned, UserAssigned",
identity_ids=[example.id],
),
tags={
"key": "value",
})
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/authorization"
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/keyvault"
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/mobile"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
exampleResourceGroup, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
Name: pulumi.String("example-resources"),
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
exampleNetwork, err := mobile.NewNetwork(ctx, "example", &mobile.NetworkArgs{
Name: pulumi.String("example-mn"),
Location: exampleResourceGroup.Location,
ResourceGroupName: exampleResourceGroup.Name,
MobileCountryCode: pulumi.String("001"),
MobileNetworkCode: pulumi.String("01"),
})
if err != nil {
return err
}
example, err := authorization.LookupUserAssignedIdentity(ctx, &authorization.LookupUserAssignedIdentityArgs{
Name: "name_of_user_assigned_identity",
ResourceGroupName: "name_of_resource_group",
}, nil)
if err != nil {
return err
}
exampleGetKeyVault, err := keyvault.LookupKeyVault(ctx, &keyvault.LookupKeyVaultArgs{
Name: "example-kv",
ResourceGroupName: "some-resource-group",
}, nil)
if err != nil {
return err
}
exampleGetKey, err := keyvault.LookupKey(ctx, &keyvault.LookupKeyArgs{
Name: "example-key",
KeyVaultId: exampleGetKeyVault.Id,
}, nil)
if err != nil {
return err
}
_, err = mobile.NewNetworkSimGroup(ctx, "example", &mobile.NetworkSimGroupArgs{
Name: pulumi.String("example-mnsg"),
Location: exampleResourceGroup.Location,
MobileNetworkId: exampleNetwork.ID(),
EncryptionKeyUrl: pulumi.String(exampleGetKey.Id),
Identity: &mobile.NetworkSimGroupIdentityArgs{
Type: pulumi.String("SystemAssigned, UserAssigned"),
IdentityIds: pulumi.StringArray{
pulumi.String(example.Id),
},
},
Tags: pulumi.StringMap{
"key": pulumi.String("value"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() =>
{
var exampleResourceGroup = new Azure.Core.ResourceGroup("example", new()
{
Name = "example-resources",
Location = "West Europe",
});
var exampleNetwork = new Azure.Mobile.Network("example", new()
{
Name = "example-mn",
Location = exampleResourceGroup.Location,
ResourceGroupName = exampleResourceGroup.Name,
MobileCountryCode = "001",
MobileNetworkCode = "01",
});
var example = Azure.Authorization.GetUserAssignedIdentity.Invoke(new()
{
Name = "name_of_user_assigned_identity",
ResourceGroupName = "name_of_resource_group",
});
var exampleGetKeyVault = Azure.KeyVault.GetKeyVault.Invoke(new()
{
Name = "example-kv",
ResourceGroupName = "some-resource-group",
});
var exampleGetKey = Azure.KeyVault.GetKey.Invoke(new()
{
Name = "example-key",
KeyVaultId = exampleGetKeyVault.Apply(getKeyVaultResult => getKeyVaultResult.Id),
});
var exampleNetworkSimGroup = new Azure.Mobile.NetworkSimGroup("example", new()
{
Name = "example-mnsg",
Location = exampleResourceGroup.Location,
MobileNetworkId = exampleNetwork.Id,
EncryptionKeyUrl = exampleGetKey.Apply(getKeyResult => getKeyResult.Id),
Identity = new Azure.Mobile.Inputs.NetworkSimGroupIdentityArgs
{
Type = "SystemAssigned, UserAssigned",
IdentityIds = new[]
{
example.Apply(getUserAssignedIdentityResult => getUserAssignedIdentityResult.Id),
},
},
Tags =
{
{ "key", "value" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.mobile.Network;
import com.pulumi.azure.mobile.NetworkArgs;
import com.pulumi.azure.authorization.AuthorizationFunctions;
import com.pulumi.azure.authorization.inputs.GetUserAssignedIdentityArgs;
import com.pulumi.azure.keyvault.KeyvaultFunctions;
import com.pulumi.azure.keyvault.inputs.GetKeyVaultArgs;
import com.pulumi.azure.keyvault.inputs.GetKeyArgs;
import com.pulumi.azure.mobile.NetworkSimGroup;
import com.pulumi.azure.mobile.NetworkSimGroupArgs;
import com.pulumi.azure.mobile.inputs.NetworkSimGroupIdentityArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()
.name("example-resources")
.location("West Europe")
.build());
var exampleNetwork = new Network("exampleNetwork", NetworkArgs.builder()
.name("example-mn")
.location(exampleResourceGroup.location())
.resourceGroupName(exampleResourceGroup.name())
.mobileCountryCode("001")
.mobileNetworkCode("01")
.build());
final var example = AuthorizationFunctions.getUserAssignedIdentity(GetUserAssignedIdentityArgs.builder()
.name("name_of_user_assigned_identity")
.resourceGroupName("name_of_resource_group")
.build());
final var exampleGetKeyVault = KeyvaultFunctions.getKeyVault(GetKeyVaultArgs.builder()
.name("example-kv")
.resourceGroupName("some-resource-group")
.build());
final var exampleGetKey = KeyvaultFunctions.getKey(GetKeyArgs.builder()
.name("example-key")
.keyVaultId(exampleGetKeyVault.applyValue(getKeyVaultResult -> getKeyVaultResult.id()))
.build());
var exampleNetworkSimGroup = new NetworkSimGroup("exampleNetworkSimGroup", NetworkSimGroupArgs.builder()
.name("example-mnsg")
.location(exampleResourceGroup.location())
.mobileNetworkId(exampleNetwork.id())
.encryptionKeyUrl(exampleGetKey.applyValue(getKeyResult -> getKeyResult.id()))
.identity(NetworkSimGroupIdentityArgs.builder()
.type("SystemAssigned, UserAssigned")
.identityIds(example.applyValue(getUserAssignedIdentityResult -> getUserAssignedIdentityResult.id()))
.build())
.tags(Map.of("key", "value"))
.build());
}
}
resources:
exampleResourceGroup:
type: azure:core:ResourceGroup
name: example
properties:
name: example-resources
location: West Europe
exampleNetwork:
type: azure:mobile:Network
name: example
properties:
name: example-mn
location: ${exampleResourceGroup.location}
resourceGroupName: ${exampleResourceGroup.name}
mobileCountryCode: '001'
mobileNetworkCode: '01'
exampleNetworkSimGroup:
type: azure:mobile:NetworkSimGroup
name: example
properties:
name: example-mnsg
location: ${exampleResourceGroup.location}
mobileNetworkId: ${exampleNetwork.id}
encryptionKeyUrl: ${exampleGetKey.id}
identity:
type: SystemAssigned, UserAssigned
identityIds:
- ${example.id}
tags:
key: value
variables:
example:
fn::invoke:
Function: azure:authorization:getUserAssignedIdentity
Arguments:
name: name_of_user_assigned_identity
resourceGroupName: name_of_resource_group
exampleGetKeyVault:
fn::invoke:
Function: azure:keyvault:getKeyVault
Arguments:
name: example-kv
resourceGroupName: some-resource-group
exampleGetKey:
fn::invoke:
Function: azure:keyvault:getKey
Arguments:
name: example-key
keyVaultId: ${exampleGetKeyVault.id}
Create NetworkSimGroup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new NetworkSimGroup(name: string, args: NetworkSimGroupArgs, opts?: CustomResourceOptions);
@overload
def NetworkSimGroup(resource_name: str,
args: NetworkSimGroupArgs,
opts: Optional[ResourceOptions] = None)
@overload
def NetworkSimGroup(resource_name: str,
opts: Optional[ResourceOptions] = None,
mobile_network_id: Optional[str] = None,
encryption_key_url: Optional[str] = None,
identity: Optional[NetworkSimGroupIdentityArgs] = None,
location: Optional[str] = None,
name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewNetworkSimGroup(ctx *Context, name string, args NetworkSimGroupArgs, opts ...ResourceOption) (*NetworkSimGroup, error)
public NetworkSimGroup(string name, NetworkSimGroupArgs args, CustomResourceOptions? opts = null)
public NetworkSimGroup(String name, NetworkSimGroupArgs args)
public NetworkSimGroup(String name, NetworkSimGroupArgs args, CustomResourceOptions options)
type: azure:mobile:NetworkSimGroup
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args NetworkSimGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args NetworkSimGroupArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args NetworkSimGroupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NetworkSimGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NetworkSimGroupArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var networkSimGroupResource = new Azure.Mobile.NetworkSimGroup("networkSimGroupResource", new()
{
MobileNetworkId = "string",
EncryptionKeyUrl = "string",
Identity = new Azure.Mobile.Inputs.NetworkSimGroupIdentityArgs
{
IdentityIds = new[]
{
"string",
},
Type = "string",
},
Location = "string",
Name = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := mobile.NewNetworkSimGroup(ctx, "networkSimGroupResource", &mobile.NetworkSimGroupArgs{
MobileNetworkId: pulumi.String("string"),
EncryptionKeyUrl: pulumi.String("string"),
Identity: &mobile.NetworkSimGroupIdentityArgs{
IdentityIds: pulumi.StringArray{
pulumi.String("string"),
},
Type: pulumi.String("string"),
},
Location: pulumi.String("string"),
Name: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var networkSimGroupResource = new NetworkSimGroup("networkSimGroupResource", NetworkSimGroupArgs.builder()
.mobileNetworkId("string")
.encryptionKeyUrl("string")
.identity(NetworkSimGroupIdentityArgs.builder()
.identityIds("string")
.type("string")
.build())
.location("string")
.name("string")
.tags(Map.of("string", "string"))
.build());
network_sim_group_resource = azure.mobile.NetworkSimGroup("networkSimGroupResource",
mobile_network_id="string",
encryption_key_url="string",
identity=azure.mobile.NetworkSimGroupIdentityArgs(
identity_ids=["string"],
type="string",
),
location="string",
name="string",
tags={
"string": "string",
})
const networkSimGroupResource = new azure.mobile.NetworkSimGroup("networkSimGroupResource", {
mobileNetworkId: "string",
encryptionKeyUrl: "string",
identity: {
identityIds: ["string"],
type: "string",
},
location: "string",
name: "string",
tags: {
string: "string",
},
});
type: azure:mobile:NetworkSimGroup
properties:
encryptionKeyUrl: string
identity:
identityIds:
- string
type: string
location: string
mobileNetworkId: string
name: string
tags:
string: string
NetworkSimGroup Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The NetworkSimGroup resource accepts the following input properties:
- Mobile
Network stringId - The ID of Mobile Network which the Mobile Network Sim Group belongs to. Changing this forces a new Mobile Network Slice to be created.
- Encryption
Key stringUrl - A key to encrypt the SIM data that belongs to this SIM group.
- Identity
Network
Sim Group Identity An
identity
block as defined below.NOTE: A
UserAssigned
identity must be specified whenencryption_key_url
is specified.- Location string
- Specifies the Azure Region where the Mobile Network Sim Groups should exist. Changing this forces a new Mobile Network Sim Group to be created.
- Name string
- Specifies the name which should be used for this Mobile Network Sim Groups. Changing this forces a new Mobile Network Sim Group to be created.
- Dictionary<string, string>
- A mapping of tags which should be assigned to the Mobile Network Sim Groups.
- Mobile
Network stringId - The ID of Mobile Network which the Mobile Network Sim Group belongs to. Changing this forces a new Mobile Network Slice to be created.
- Encryption
Key stringUrl - A key to encrypt the SIM data that belongs to this SIM group.
- Identity
Network
Sim Group Identity Args An
identity
block as defined below.NOTE: A
UserAssigned
identity must be specified whenencryption_key_url
is specified.- Location string
- Specifies the Azure Region where the Mobile Network Sim Groups should exist. Changing this forces a new Mobile Network Sim Group to be created.
- Name string
- Specifies the name which should be used for this Mobile Network Sim Groups. Changing this forces a new Mobile Network Sim Group to be created.
- map[string]string
- A mapping of tags which should be assigned to the Mobile Network Sim Groups.
- mobile
Network StringId - The ID of Mobile Network which the Mobile Network Sim Group belongs to. Changing this forces a new Mobile Network Slice to be created.
- encryption
Key StringUrl - A key to encrypt the SIM data that belongs to this SIM group.
- identity
Network
Sim Group Identity An
identity
block as defined below.NOTE: A
UserAssigned
identity must be specified whenencryption_key_url
is specified.- location String
- Specifies the Azure Region where the Mobile Network Sim Groups should exist. Changing this forces a new Mobile Network Sim Group to be created.
- name String
- Specifies the name which should be used for this Mobile Network Sim Groups. Changing this forces a new Mobile Network Sim Group to be created.
- Map<String,String>
- A mapping of tags which should be assigned to the Mobile Network Sim Groups.
- mobile
Network stringId - The ID of Mobile Network which the Mobile Network Sim Group belongs to. Changing this forces a new Mobile Network Slice to be created.
- encryption
Key stringUrl - A key to encrypt the SIM data that belongs to this SIM group.
- identity
Network
Sim Group Identity An
identity
block as defined below.NOTE: A
UserAssigned
identity must be specified whenencryption_key_url
is specified.- location string
- Specifies the Azure Region where the Mobile Network Sim Groups should exist. Changing this forces a new Mobile Network Sim Group to be created.
- name string
- Specifies the name which should be used for this Mobile Network Sim Groups. Changing this forces a new Mobile Network Sim Group to be created.
- {[key: string]: string}
- A mapping of tags which should be assigned to the Mobile Network Sim Groups.
- mobile_
network_ strid - The ID of Mobile Network which the Mobile Network Sim Group belongs to. Changing this forces a new Mobile Network Slice to be created.
- encryption_
key_ strurl - A key to encrypt the SIM data that belongs to this SIM group.
- identity
Network
Sim Group Identity Args An
identity
block as defined below.NOTE: A
UserAssigned
identity must be specified whenencryption_key_url
is specified.- location str
- Specifies the Azure Region where the Mobile Network Sim Groups should exist. Changing this forces a new Mobile Network Sim Group to be created.
- name str
- Specifies the name which should be used for this Mobile Network Sim Groups. Changing this forces a new Mobile Network Sim Group to be created.
- Mapping[str, str]
- A mapping of tags which should be assigned to the Mobile Network Sim Groups.
- mobile
Network StringId - The ID of Mobile Network which the Mobile Network Sim Group belongs to. Changing this forces a new Mobile Network Slice to be created.
- encryption
Key StringUrl - A key to encrypt the SIM data that belongs to this SIM group.
- identity Property Map
An
identity
block as defined below.NOTE: A
UserAssigned
identity must be specified whenencryption_key_url
is specified.- location String
- Specifies the Azure Region where the Mobile Network Sim Groups should exist. Changing this forces a new Mobile Network Sim Group to be created.
- name String
- Specifies the name which should be used for this Mobile Network Sim Groups. Changing this forces a new Mobile Network Sim Group to be created.
- Map<String>
- A mapping of tags which should be assigned to the Mobile Network Sim Groups.
Outputs
All input properties are implicitly available as output properties. Additionally, the NetworkSimGroup resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing NetworkSimGroup Resource
Get an existing NetworkSimGroup resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: NetworkSimGroupState, opts?: CustomResourceOptions): NetworkSimGroup
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
encryption_key_url: Optional[str] = None,
identity: Optional[NetworkSimGroupIdentityArgs] = None,
location: Optional[str] = None,
mobile_network_id: Optional[str] = None,
name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None) -> NetworkSimGroup
func GetNetworkSimGroup(ctx *Context, name string, id IDInput, state *NetworkSimGroupState, opts ...ResourceOption) (*NetworkSimGroup, error)
public static NetworkSimGroup Get(string name, Input<string> id, NetworkSimGroupState? state, CustomResourceOptions? opts = null)
public static NetworkSimGroup get(String name, Output<String> id, NetworkSimGroupState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Encryption
Key stringUrl - A key to encrypt the SIM data that belongs to this SIM group.
- Identity
Network
Sim Group Identity An
identity
block as defined below.NOTE: A
UserAssigned
identity must be specified whenencryption_key_url
is specified.- Location string
- Specifies the Azure Region where the Mobile Network Sim Groups should exist. Changing this forces a new Mobile Network Sim Group to be created.
- Mobile
Network stringId - The ID of Mobile Network which the Mobile Network Sim Group belongs to. Changing this forces a new Mobile Network Slice to be created.
- Name string
- Specifies the name which should be used for this Mobile Network Sim Groups. Changing this forces a new Mobile Network Sim Group to be created.
- Dictionary<string, string>
- A mapping of tags which should be assigned to the Mobile Network Sim Groups.
- Encryption
Key stringUrl - A key to encrypt the SIM data that belongs to this SIM group.
- Identity
Network
Sim Group Identity Args An
identity
block as defined below.NOTE: A
UserAssigned
identity must be specified whenencryption_key_url
is specified.- Location string
- Specifies the Azure Region where the Mobile Network Sim Groups should exist. Changing this forces a new Mobile Network Sim Group to be created.
- Mobile
Network stringId - The ID of Mobile Network which the Mobile Network Sim Group belongs to. Changing this forces a new Mobile Network Slice to be created.
- Name string
- Specifies the name which should be used for this Mobile Network Sim Groups. Changing this forces a new Mobile Network Sim Group to be created.
- map[string]string
- A mapping of tags which should be assigned to the Mobile Network Sim Groups.
- encryption
Key StringUrl - A key to encrypt the SIM data that belongs to this SIM group.
- identity
Network
Sim Group Identity An
identity
block as defined below.NOTE: A
UserAssigned
identity must be specified whenencryption_key_url
is specified.- location String
- Specifies the Azure Region where the Mobile Network Sim Groups should exist. Changing this forces a new Mobile Network Sim Group to be created.
- mobile
Network StringId - The ID of Mobile Network which the Mobile Network Sim Group belongs to. Changing this forces a new Mobile Network Slice to be created.
- name String
- Specifies the name which should be used for this Mobile Network Sim Groups. Changing this forces a new Mobile Network Sim Group to be created.
- Map<String,String>
- A mapping of tags which should be assigned to the Mobile Network Sim Groups.
- encryption
Key stringUrl - A key to encrypt the SIM data that belongs to this SIM group.
- identity
Network
Sim Group Identity An
identity
block as defined below.NOTE: A
UserAssigned
identity must be specified whenencryption_key_url
is specified.- location string
- Specifies the Azure Region where the Mobile Network Sim Groups should exist. Changing this forces a new Mobile Network Sim Group to be created.
- mobile
Network stringId - The ID of Mobile Network which the Mobile Network Sim Group belongs to. Changing this forces a new Mobile Network Slice to be created.
- name string
- Specifies the name which should be used for this Mobile Network Sim Groups. Changing this forces a new Mobile Network Sim Group to be created.
- {[key: string]: string}
- A mapping of tags which should be assigned to the Mobile Network Sim Groups.
- encryption_
key_ strurl - A key to encrypt the SIM data that belongs to this SIM group.
- identity
Network
Sim Group Identity Args An
identity
block as defined below.NOTE: A
UserAssigned
identity must be specified whenencryption_key_url
is specified.- location str
- Specifies the Azure Region where the Mobile Network Sim Groups should exist. Changing this forces a new Mobile Network Sim Group to be created.
- mobile_
network_ strid - The ID of Mobile Network which the Mobile Network Sim Group belongs to. Changing this forces a new Mobile Network Slice to be created.
- name str
- Specifies the name which should be used for this Mobile Network Sim Groups. Changing this forces a new Mobile Network Sim Group to be created.
- Mapping[str, str]
- A mapping of tags which should be assigned to the Mobile Network Sim Groups.
- encryption
Key StringUrl - A key to encrypt the SIM data that belongs to this SIM group.
- identity Property Map
An
identity
block as defined below.NOTE: A
UserAssigned
identity must be specified whenencryption_key_url
is specified.- location String
- Specifies the Azure Region where the Mobile Network Sim Groups should exist. Changing this forces a new Mobile Network Sim Group to be created.
- mobile
Network StringId - The ID of Mobile Network which the Mobile Network Sim Group belongs to. Changing this forces a new Mobile Network Slice to be created.
- name String
- Specifies the name which should be used for this Mobile Network Sim Groups. Changing this forces a new Mobile Network Sim Group to be created.
- Map<String>
- A mapping of tags which should be assigned to the Mobile Network Sim Groups.
Supporting Types
NetworkSimGroupIdentity, NetworkSimGroupIdentityArgs
- Identity
Ids List<string> - A list of IDs for User Assigned Managed Identity resources to be assigned.
- Type string
- Specifies the type of Managed Service Identity. Possible value is
UserAssigned
.
- Identity
Ids []string - A list of IDs for User Assigned Managed Identity resources to be assigned.
- Type string
- Specifies the type of Managed Service Identity. Possible value is
UserAssigned
.
- identity
Ids List<String> - A list of IDs for User Assigned Managed Identity resources to be assigned.
- type String
- Specifies the type of Managed Service Identity. Possible value is
UserAssigned
.
- identity
Ids string[] - A list of IDs for User Assigned Managed Identity resources to be assigned.
- type string
- Specifies the type of Managed Service Identity. Possible value is
UserAssigned
.
- identity_
ids Sequence[str] - A list of IDs for User Assigned Managed Identity resources to be assigned.
- type str
- Specifies the type of Managed Service Identity. Possible value is
UserAssigned
.
- identity
Ids List<String> - A list of IDs for User Assigned Managed Identity resources to be assigned.
- type String
- Specifies the type of Managed Service Identity. Possible value is
UserAssigned
.
Import
Mobile Network Sim Groups can be imported using the resource id
, e.g.
$ pulumi import azure:mobile/networkSimGroup:NetworkSimGroup example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup1/providers/Microsoft.MobileNetwork/simGroups/simGroup1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurerm
Terraform Provider.