We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
azurerm_palo_alto_next_generation_firewall_virtual_hub_*
1 parent 93c9de5 commit 34342fcCopy full SHA for 34342fc
1 file changed
internal/services/paloalto/schema/network_profile.go
@@ -392,7 +392,8 @@ func FlattenNetworkProfileVHub(input firewalls.NetworkProfile) (*NetworkProfileV
392
393
if v := input.VwanConfiguration; v != nil {
394
result.VHubID = pointer.From(v.VHub.ResourceId)
395
- applianceID, err := networkvirtualappliances.ParseNetworkVirtualApplianceID(pointer.From(v.NetworkVirtualApplianceId))
+ // The API may return the static segments lowercased so we'll need to parse it insensitively and set the normalized result into state.
396
+ applianceID, err := networkvirtualappliances.ParseNetworkVirtualApplianceIDInsensitively(pointer.From(v.NetworkVirtualApplianceId))
397
if err != nil {
398
return nil, err
399
}
0 commit comments