Skip to content

Commit

Permalink
Fixed output variable name in curl command (pulumi#135)
Browse files Browse the repository at this point in the history
The variable used in the curl command is currently called `frontendIP` rather than `frontendAddress` which it should be to match the code above.
  • Loading branch information
jjcollinge authored and lukehoban committed Sep 13, 2018
1 parent 6314922 commit 0bdda6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion azure-ts-aks-mean/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ npm install
can use `curl` and `grep` to retrieve the `<title>` of the site the proxy points at.

```sh
$ curl -sL $(pulumi stack output frontendIp) | grep "<title>"
$ curl -sL $(pulumi stack output frontendAddress) | grep "<title>"
<title>Node/Angular Todo App</title>>
```

Expand Down

0 comments on commit 0bdda6b

Please sign in to comment.