Skip to content

Commit

Permalink
example - fix unix const in netapp example (#22839)
Browse files Browse the repository at this point in the history
  • Loading branch information
myc2h6o authored Aug 7, 2023
1 parent 1c80246 commit 982d9eb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/netapp/nfsv3_volume_with_snapshot_policy/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0

provider "azurerm" {
features {}
}
Expand Down Expand Up @@ -96,7 +96,7 @@ resource "azurerm_netapp_volume" "example" {
protocols = ["NFSv3"]
subnet_id = azurerm_subnet.example.id
storage_quota_in_gb = 100
security_style = "Unix"
security_style = "unix"

data_protection_snapshot_policy {
snapshot_policy_id = azurerm_netapp_snapshot_policy.example.id
Expand Down

0 comments on commit 982d9eb

Please sign in to comment.