Manages a Network Watcher.
resource "azurerm_resource_group" "example" {
name = "production-nwwatcher"
location = "West Europe"
}
resource "azurerm_network_watcher" "example" {
name = "production-nwwatcher"
location = azurerm_resource_group.example.location
resource_group_name = azurerm_resource_group.example.name
}
The following arguments are supported:
name
- (Required) The name of the Network Watcher. Changing this forces a new resource to be created.
resource_group_name
- (Required) The name of the resource group in which to create the Network Watcher. 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.
tags
- (Optional) A mapping of tags to assign to the resource.
In addition to the Arguments listed above - the following Attributes are exported:
id
- The ID of the Network Watcher.The timeouts
block allows you to specify timeouts for certain actions:
create
- (Defaults to 30 minutes) Used when creating the Network Watcher.update
- (Defaults to 30 minutes) Used when updating the Network Watcher.read
- (Defaults to 5 minutes) Used when retrieving the Network Watcher.delete
- (Defaults to 30 minutes) Used when deleting the Network Watcher.Network Watchers can be imported using the resource id
, e.g.
terraform import azurerm_network_watcher.watcher1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Network/networkWatchers/watcher1