Skip to content

Commit

Permalink
Azure tenant readme (#408)
Browse files Browse the repository at this point in the history
  • Loading branch information
sekka1 authored Feb 23, 2023
1 parent 295a4bd commit 6b02602
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions terraform-modules/azure/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,31 @@ az feature register --name PodSecurityPolicyPreview --namespace Microsoft.Contai
az provider register --namespace Microsoft.ContainerService
```

# Show tenant
```
az account tenant list
az account show
```

# change tenant:

## sign in as a different user
```
az login --user <[email protected]> -password <myPassword>
```

## sign in with a different tenant
```
az login --tenant <myTenantID>
```

## clear local creds
```
az account clear
```


# AKS Pod Identities
There has been a bunch of changes to the way identities are given to pods and how that identity is
linked/federated to Azure Active Directory so that the pod can access Azure resources without hardcoded
Expand Down

0 comments on commit 6b02602

Please sign in to comment.