Skip to content

Commit

Permalink
Fix tcp_reset_enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
Aris van Ommeren committed Dec 15, 2022
1 parent e8545a4 commit dabddc7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ func dataSourceArmLoadBalancerOutboundRuleRead(d *pluginsdk.ResourceData, meta i
backendAddressPoolId = bapid.ID()
}
d.Set("backend_address_pool_id", backendAddressPoolId)
d.Set("enable_tcp_reset", props.EnableTCPReset)
d.Set("tcp_reset_enabled", props.EnableTCPReset)

frontendIpConfigurations := make([]interface{}, 0)
if configs := props.FrontendIPConfigurations; configs != nil {
Expand Down

0 comments on commit dabddc7

Please sign in to comment.