Skip to content

Commit

Permalink
fix(AZ-1481): fix private_endpoint_network_policies parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
zfiel committed Nov 19, 2024
1 parent 7eb20f3 commit bd27301
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ No modules.
| network\_security\_group\_name | The Network Security Group name to associate with the subnets. | `string` | `null` | no |
| network\_security\_group\_rg | The Network Security Group RG to associate with the subnet. Default is the same RG than the subnet. | `string` | `null` | no |
| private\_endpoint\_network\_policies | Enable or disable network policies for the private endpoint on the subnet. Possible values are `Disabled`, `Enabled`, `NetworkSecurityGroupEnabled` and `RouteTableEnabled`. | `string` | `null` | no |
| private\_link\_endpoint\_enabled | Enable or disable network policies for the Private Endpoint on the subnet. | `bool` | `null` | no |
| private\_link\_endpoint\_enabled | Enable or disable network policies for the Private Endpoint on the subnet. | `bool` | `true` | no |
| private\_link\_service\_enabled | Enable or disable network policies for the Private Link Service on the subnet. | `bool` | `null` | no |
| resource\_group\_name | Resource group name. | `string` | n/a | yes |
| route\_table\_name | The Route Table name to associate with the subnet. | `string` | `null` | no |
Expand Down
2 changes: 1 addition & 1 deletion variables-subnet.tf
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ variable "service_endpoint_policy_ids" {
variable "private_link_endpoint_enabled" {
description = "Enable or disable network policies for the Private Endpoint on the subnet."
type = bool
default = null
default = true
}

variable "private_endpoint_network_policies" {
Expand Down

0 comments on commit bd27301

Please sign in to comment.