OuterSrc / terraform-azurerm-caf

Terraform supermodule for the Terraform platform engineering for Azure
http://aka.ms/caf/terraform
MIT License
0 stars 0 forks source link

Feature request-PrivateLink NSG #14

Open serco-karleveleigh opened 1 year ago

serco-karleveleigh commented 1 year ago

Is there an existing issue for this?

Community Note

Description

Adopting privatelink end policies for AVD means we need a base rule for storage accounts used for AVD to allow SMB445 inbound

Current AVD privatelink subnets do not have this rule or capability. This should be added to base AVD LZ code

New or Affected Resource(s

tfvars

Potential Configuration file

nsg_sga3p_scavd_privatelink = {
    name = "nsg-sga3p-scavd-privatelink"
    nsg = [
      {
        name                       = "Allow-In-SMB"
        description                = "Allow in SMB traffic from AVD"
        priority                   = "150"
        direction                  = "Inbound"
        access                     = "Allow"
        protocol                   = "Tcp"
        source_port_range          = "*"
        destination_port_range     = "445"
        source_address_prefix      = "xxx.xxx.xxx.xxx/xx"
        destination_address_prefix = "xxx.xxx.xxx.xxx/xx"
      },

References

No response