Static IP of Logic App Standard using NAT Gateway

This post has been republished via RSS; it originally appeared at: Microsoft Tech Community - Latest Blogs - .

Scenario

 

Route Logic App Standard traffic through your Virtual Network through specified static public IP address(es).

This approach will not work with Logic App Consumption

 

References

 

 

Services Used

 

  • Azure Logic Apps (Standard)
  • Azure Virtual Network
  • Azure NAT Gateway

 

Steps

 

1. Create Virtual Network

 

KD_25-1674239545018.png

 

 

2. Create Logic App Standard

 

KD_0-1674243571267.png

 

 

3. Create a workflow within the Logic App and set up an outbound HTTP action. 

This external website returns the IP address of the caller. This step mimics the HTTP trigger function mentioned here: 

Control Azure Functions outbound IP with an Azure virtual network NAT gateway | Microsoft Learn

 

KD_0-1674243943292.png

 

4. Integrate the Virtual Network Integration on the Logic App and select the VNET/subnet that was created in Step 1.

 

KD_2-1674243684628.png

 

 

 

5. (Optional) Test without the NAT Gateway Linked

  • Invoke the workflow first and make the outbound call before configuring the NAT Gateway for testing/checking which IP address is returned.
  • In this case, the IP address that was returned by the service is 20.88.178.231
  • The IP address is part of the range of outbound IP addresses of the Logic App on the Networking page.

 

KD_15-1674235434855.png

 

Navigate to the Networking blade of the Logic App and click on the list of Outbound IP addresses to view the full set. The IP address returned is part of the list.

 

KD_0-1674243838737.png

 

 

 

6. Create NAT Gateway and integrate it to the Virtual Network

 

These below steps can be done during or after creation:

  1. Link the NAT Gateway to the Virtual Network and subnet that is configured on the Logic App.
  2. Create a Public IP Address, which will act as the outbound IP address.

 

KD_22-1674236776760.png

 

 

Check to see what the IP address has been created. The Outbound IP address is this case is 20.115.24.20. This is the static IP address. You can also create more IP addresses.

 

KD_19-1674235434873.png

 

 

7. Test with the NAT Gateway Linked

  • Invoke the workflow first and make the outbound call after configuring the NAT Gateway for testing/checking which IP address is returned.
  • In this case, the IP address that was returned by the service is 20.114.24.20
  • The IP address is the Public IP address configured on the NAT Gateway, so the traffic has been routed through that.

 

KD_21-1674235434881.png

 

 

Conclusion

 

Logic Apps Standard can be integrated with a Virtual Network, which in turn can be integrated with a NAT Gateway. This helps with routing traffic on built-in connectors through the NAT Gateway, using the static IP(s) defined as the outbound IP. In this tutorial, I have created only 1 static IP, but it is possible to create more on the NAT Gateway, which will allow the Logic App's traffic to route through either one.

Leave a Reply

Your email address will not be published. Required fields are marked *

*

This site uses Akismet to reduce spam. Learn how your comment data is processed.