Skip to content

Commit

Permalink
Be more specific in docs + Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
nitinprakash96 committed Jun 20, 2024
1 parent dd1d6d3 commit 417ff93
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
This repository provides functions and types for common azure related
operations. This is very much incomplete but serves as a boilerplate to get
started. Covered areas:
- Authentication (with managed identities)
- Key Vault (To be pushed)
- Authentication (with managed identities only as of now)
- Key Vault
- Blob storage (To be pushed)
- Email communication service (To be pushed)

Expand All @@ -17,7 +17,7 @@ To build the entire project, run:
stack build
```

In order to build individual components of the library, run:
In order to build individual components of the library, `cd` into the package and run:
```
cabal build
```
3 changes: 2 additions & 1 deletion azure-auth/Azure/Auth.hs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ import Azure.Types (AccessToken (..), Token, readToken, updateToken)
import qualified Data.Text as Text

{- | IMDS is a REST API that's available at a well-known, non-routable IP address ( 169.254. 169.254 ).
It can only be accessed from within the VM. Communication between the VM and IMDS never leaves the host.
It is a local-only link can only be accessed from within the VM.
Communication between the VM and IMDS never leaves the host.
-}
imdsHost :: String
imdsHost = "169.254.169.254"
Expand Down

0 comments on commit 417ff93

Please sign in to comment.