Skip to content

Commit

Permalink
update readme and add draft post
Browse files Browse the repository at this point in the history
  • Loading branch information
njmulsqb committed Sep 5, 2024
1 parent afc5f1e commit 08f433f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
<a href="https://www.buymeacoffee.com/njmulsqb" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-violet.png" alt="Buy Me A Coffee" style="height: 60px !important;width: 217px !important;" ></a>

# njmulsqb.github.io
My Github Page

Expand All @@ -8,5 +6,3 @@ This is my personal website hosting my blog posts and write ups.

The main page has been copied from @naglinagli hence the credit goes to him.

# Ideas
- The art of reading writeups
14 changes: 14 additions & 0 deletions _drafts/functionAppPrivateEndpoints.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
The concept of private endpoint though have been out there for over [4 years now](https://azure.microsoft.com/en-us/updates/private-endpoints-for-azure-storage/) but for some reason I don't see a lot of adoption in the wild. I see private endpoint as a beneficial feature to just say NO to public access.

I won't be going into the details of what private endpoint is, rather today we'll see how can we implement it between a function app and storage account. If you want to study about what private endpoint is, you can check [this](https://learn.microsoft.com/en-us/azure/private-link/private-endpoint-overview)

Let's dive in! I assume you've have created storage account and function app already.

### Deployment Steps

Here are the steps to create private endpoint between the two Azure resources:

1. Go to the storage account that you want to connect with function app in Azure Portal and select the "Networking" tab from the left sidebar.
2. Select the "Private Endpoint" column and click on "Private endpoint connections"
3. Fill in some basic details e.g. subscription, resource group etc. Just make sure that the region you select for your private endpoint is same as of the virtual network (we'll be connecting the private endpoint to a VNet).
4.

0 comments on commit 08f433f

Please sign in to comment.