Azure NetApp Snapshot

This page shows how to write Terraform and Azure Resource Manager for NetApp Snapshot and write them securely.

azurerm_netapp_snapshot (Terraform)

The Snapshot in NetApp can be configured in Terraform with the resource name azurerm_netapp_snapshot. The following sections describe 2 examples of how to use the resource and its parameters.

Example Usage from GitHub

main.tf#L7
resource "azurerm_netapp_snapshot" "this" {
  account_name        = var.account_name
  location            = var.location
  name                = var.name
  pool_name           = var.pool_name
  resource_group_name = var.resource_group_name
main.tf#L7
resource "azurerm_netapp_snapshot" "this" {
  account_name        = var.account_name
  location            = var.location
  name                = var.name
  pool_name           = var.pool_name
  resource_group_name = var.resource_group_name

Review your Terraform file for Azure best practices

Shisho Cloud, our free checker to make sure your Terraform configuration follows best practices, is available (beta).

Parameters

Explanation in Terraform Registry

Manages a NetApp Snapshot.

Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots (Azure Resource Manager)

The netAppAccounts/capacityPools/volumes/snapshots in Microsoft.NetApp can be configured in Azure Resource Manager with the resource name Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots. The following sections describe how to use the resource and its parameters.

Example Usage from GitHub

An example could not be found in GitHub.

Parameters

  • apiVersion required - string
  • location required - string

    Resource location

  • name required - string

    The name of the snapshot

  • properties required
    • type required - string

    Frequently asked questions

    What is Azure NetApp Snapshot?

    Azure NetApp Snapshot is a resource for NetApp of Microsoft Azure. Settings can be wrote in Terraform.

    Where can I find the example code for the Azure NetApp Snapshot?

    For Terraform, the kevinhead/azurerm and niveklabs/azurerm source code examples are useful. See the Terraform Example section for further details.