Skip to content

azurermNetworkManagerSubscriptionConnection

Manages a Network Manager Subscription Connection which may cross tenants.

Example Usage

/*Provider bindings are generated by running cdktf get.
See https://cdk.tf/provider-generation for more details.*/
import * as azurerm from "./.gen/providers/azurerm";
/*The following providers are missing schema information and might need manual adjustments to synthesize correctly: azurerm.
For a more precise conversion please use the --provider flag in convert.*/
const azurermResourceGroupExample = new azurerm.resourceGroup.ResourceGroup(
  this,
  "example",
  {
    location: "West Europe",
    name: "example-resources",
  }
);
const dataAzurermSubscriptionCurrent =
  new azurerm.dataAzurermSubscription.DataAzurermSubscription(
    this,
    "current",
    {}
  );
const azurermNetworkManagerExample = new azurerm.networkManager.NetworkManager(
  this,
  "example_2",
  {
    location: azurermResourceGroupExample.location,
    name: "example-networkmanager",
    resource_group_name: azurermResourceGroupExample.name,
    scope: [
      {
        subscription_ids: [dataAzurermSubscriptionCurrent.id],
      },
    ],
    scope_accesses: ["SecurityAdmin"],
  }
);
/*This allows the Terraform resource name to match the original name. You can remove the call if you don't need them to match.*/
azurermNetworkManagerExample.overrideLogicalId("example");
const azurermNetworkManagerSubscriptionConnectionExample =
  new azurerm.networkManagerSubscriptionConnection.NetworkManagerSubscriptionConnection(
    this,
    "example_3",
    {
      description: "example",
      name: "example-nsnmc",
      network_manager_id: azurermNetworkManagerExample.id,
      subscription_id: dataAzurermSubscriptionCurrent.id,
    }
  );
/*This allows the Terraform resource name to match the original name. You can remove the call if you don't need them to match.*/
azurermNetworkManagerSubscriptionConnectionExample.overrideLogicalId("example");

Arguments Reference

The following arguments are supported:

  • name - (Required) Specifies the name which should be used for this Network Subscription Network Manager Connection. Changing this forces a new Network Subscription Network Manager Connection to be created.

  • subscriptionId - (Required) Specifies the ID of the target Subscription. Changing this forces a new resource to be created.

  • networkManagerId - (Required) Specifies the ID of the Network Manager which the Subscription is connected to.

  • description - (Optional) A description of the Network Manager Subscription Connection.

Attributes Reference

In addition to the Arguments listed above - the following Attributes are exported:

  • id - The ID of the Network Manager Subscription Connection.

  • connectionState - The Connection state of the Network Manager Subscription Connection.

Timeouts

The timeouts block allows you to specify timeouts for certain actions:

  • create - (Defaults to 30 minutes) Used when creating the Network Subscription Network Manager Connection.
  • read - (Defaults to 5 minutes) Used when retrieving the Network Subscription Network Manager Connection.
  • update - (Defaults to 30 minutes) Used when updating the Network Subscription Network Manager Connection.
  • delete - (Defaults to 30 minutes) Used when deleting the Network Subscription Network Manager Connection.

Import

Network Subscription Network Manager Connection can be imported using the resourceId, e.g.

terraform import azurerm_network_manager_subscription_connection.example /subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/networkManagerConnections/networkManagerConnection1