Skip to content

azurermNetworkDdosProtectionPlan

Manages an AzureNetwork DDoS Protection Plan.

-> NOTE Azure only allows one DDoS Protection Plan per region.

\~> NOTE The DDoS Protection Plan is a high-cost service. Please keep this in mind while testing and learning.

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 azurermNetworkDdosProtectionPlanExample =
  new azurerm.networkDdosProtectionPlan.NetworkDdosProtectionPlan(
    this,
    "example_1",
    {
      location: azurermResourceGroupExample.location,
      name: "example-protection-plan",
      resource_group_name: azurermResourceGroupExample.name,
    }
  );
/*This allows the Terraform resource name to match the original name. You can remove the call if you don't need them to match.*/
azurermNetworkDdosProtectionPlanExample.overrideLogicalId("example");

Argument Reference

The following arguments are supported:

  • name - (Required) Specifies the name of the Network DDoS Protection Plan. Changing this forces a new resource to be created.

  • location - (Required) Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

  • resourceGroupName - (Required) The name of the resource group in which to create the resource. Changing this forces a new resource to be created.

  • tags - (Optional) A mapping of tags to assign to the resource.

Attributes Reference

The following attributes are exported:

  • id - The ID of the DDoS Protection Plan

  • virtualNetworkIds - A list of Virtual Network IDs associated with the DDoS Protection Plan.

Timeouts

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

  • create - (Defaults to 30 minutes) Used when creating the DDoS Protection Plan.
  • update - (Defaults to 30 minutes) Used when updating the DDoS Protection Plan.
  • read - (Defaults to 5 minutes) Used when retrieving the DDoS Protection Plan.
  • delete - (Defaults to 30 minutes) Used when deleting the DDoS Protection Plan.

Import

Azure DDoS Protection Plan can be imported using the resourceId, e.g.

terraform import azurerm_network_ddos_protection_plan.example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Network/ddosProtectionPlans/testddospplan