You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by an...@apache.org on 2019/01/27 21:11:42 UTC

[libcloud] branch trunk updated: Updating command line arguments to current version.

This is an automated email from the ASF dual-hosted git repository.

anthonyshaw pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/libcloud.git


The following commit(s) were added to refs/heads/trunk by this push:
     new abf69c8  Updating command line arguments to current version.
     new faad002  Merge pull request #1273 from mitar/patch-1
abf69c8 is described below

commit abf69c8fdc10eb9d2d4bfb2e5a63b4a8d29a83b9
Author: Mitar <mi...@tnode.com>
AuthorDate: Mon Dec 31 15:49:17 2018 -0800

    Updating command line arguments to current version.
---
 docs/compute/drivers/azure_arm.rst | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/docs/compute/drivers/azure_arm.rst b/docs/compute/drivers/azure_arm.rst
index 74ecf72..b19c811 100644
--- a/docs/compute/drivers/azure_arm.rst
+++ b/docs/compute/drivers/azure_arm.rst
@@ -16,7 +16,7 @@ Connecting to Azure
 -------------------
 
 To connect to Azure you need your tenant ID and subscription ID.  Using the
-Azure cross platform CLI, use ``azure account list`` to get these
+Azure cross platform CLI, use ``az account list`` to get these
 values.
 
 Creating a Service Principal
@@ -27,9 +27,9 @@ https://azure.microsoft.com/en-us/documentation/articles/resource-group-authenti
 
 .. sourcecode:: bash
 
-  azure ad app create --name "<Your Application Display Name>" --home-page "<https://YourApplicationHomePage>" --identifier-uris "<https://YouApplicationUri>" --password <Your_Password>
-  azure ad sp create "<Application_Id>"
-  azure role assignment create --objectId "<Object_Id>" -o Owner -c /subscriptions/{subscriptionId}/
+  az ad app create --display-name "<Your Application Display Name>" --identifier-uris "<https://YouApplicationUri>" --password <Your_Password>
+  az ad sp create --id "<Application_Id>"
+  az role assignment create --assignee "<Object_Id>" --role Owner --scope /subscriptions/{subscriptionId}/
 
 Instantiating a driver
 ~~~~~~~~~~~~~~~~~~~~~~