hashicorp / terraform-provider-azurerm

Terraform provider for Azure Resource Manager
https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs
Mozilla Public License 2.0
4.53k stars 4.6k forks source link

Support for public access level for ADLS Gen2 #20069

Open ramyaradhakrishnan2015 opened 1 year ago

ramyaradhakrishnan2015 commented 1 year ago

Is there an existing issue for this?

Community Note

Description

It would be helpful if there could be an attribute to disable or enable the public access for Azure Data Lake gen2.

public_access_level = “false”

New or Affected Resource(s)/Data Source(s)

azurerm_storage_data_lake_gen2_filesystem

Potential Terraform Configuration

resource "azurerm_storage_data_lake_gen2_filesystem" "example" {
  name               = "example"
  storage_account_id = azurerm_storage_account.example.id

  properties = {
    hello = "aGVsbG8="
  }

 public_access_level    = “false”
}

References

No response

sinbai commented 1 year ago

@ramyaradhakrishnan2015 thanks for opening this issue. Could you share more details corresponding to this feature (on the Azure portal/public doc/Azure API) to help us figure out what the feature is?