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
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
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
Parameters
-
account_namerequired - string -
idoptional computed - string -
locationrequired - string -
namerequired - string -
pool_namerequired - string -
resource_group_namerequired - string -
tagsoptional - map from string to string -
volume_namerequired - string -
timeoutssingle block
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
apiVersionrequired - stringlocationrequired - stringResource location
namerequired - stringThe name of the snapshot
propertiesrequiredtyperequired - 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.