Skip to content

Commit

Permalink
Merge branch 'AZ-1481_fix_parameter' into 'master'
Browse files Browse the repository at this point in the history
fix(AZ-1481): fix `private_endpoint_network_policies` parameter

Closes AZ-1481

See merge request claranet/projects/cloud/azure/terraform/modules/subnet!91
  • Loading branch information
Shr3ps committed Nov 20, 2024
2 parents 7eb20f3 + bd27301 commit 10fe238
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 10fe238

Please sign in to comment.