Skip to content

Commit

Permalink
fix on cid filter
Browse files Browse the repository at this point in the history
  • Loading branch information
lee212 committed Oct 27, 2016
1 parent 615dc82 commit fad5be5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -213,16 +213,16 @@
],
"source": [
"out=!azure ad sp create --name simpleazure\n",
"cid = out[6].split(":")[1].lstrip()\n",
"newout=\"\\n\".join(out)\n",
"cid = !print '$newout'|awk -F ':' '/Object Id/{ print $3}'\n",
"print(newout)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"``Object Id`` is our **client id** for Simple Azure. ``cid`` variable stores the ID in the previous commands."
"``Id`` after Service Principal Names is our **client id** for Simple Azure. ``cid`` variable stores the ID in the previous commands."
]
},
{
Expand Down

0 comments on commit fad5be5

Please sign in to comment.