Skip to content

Commit 039b0cc

Browse files
authored
Merge pull request #9260 from vmsilvamolina/patch-1
Fix URL links
2 parents b260430 + 7cb5173 commit 039b0cc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/virtual-machines/linux/ansible-install-configure.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ Now move on to [Create Azure credentials](#create-azure-credentials).
146146

147147
Ansible communicates with Azure using a username and password or a service principal. An Azure service principal is a security identity that you can use with apps, services, and automation tools like Ansible. You control and define the permissions as to what operations the service principal can perform in Azure. To improve security over just providing a username and password, this example creates a basic service principal.
148148

149-
On your host computer or in the Azure Cloud Shell, create a service principal using [az ad sp create-for-rbac](/cli/azure/ad/sp#create-for-rbac). The credentials that Ansible needs are output to the screen:
149+
On your host computer or in the Azure Cloud Shell, create a service principal using [az ad sp create-for-rbac](/cli/azure/ad/sp#az-ad-sp-create-for-rbac). The credentials that Ansible needs are output to the screen:
150150

151151
```azurecli-interactive
152152
az ad sp create-for-rbac --query '{"client_id": appId, "secret": password, "tenant": tenant}'
@@ -162,7 +162,7 @@ An example of the output from the preceding commands is as follows:
162162
}
163163
```
164164

165-
To authenticate to Azure, you also need to obtain your Azure subscription ID using [az account show](/cli/azure/account#az_account_show):
165+
To authenticate to Azure, you also need to obtain your Azure subscription ID using [az account show](/cli/azure/account#az-account-show):
166166

167167
```azurecli-interactive
168168
az account show --query "{ subscription_id: id }"

0 commit comments

Comments
 (0)