Is this right? ```> az login A web browser has ...
# getting-started
s
Is this right?
Copy code
> az login
A web browser has been opened at <https://login.microsoftonline.com/organizations/oauth2/v2.0/authorize>. Please continue the login in the web browser. If no web browser is available or if the web browser fails to open, use device code flow with `az login --use-device-code`.
[
  {
    "cloudName": "AzureCloud",
    "homeTenantId": "...",
    "id": "...",
    "isDefault": true,
    "managedByTenants": [],
    "name": "Azure Subscription",
    "state": "Enabled",
    "tenantId": "...",
    "user": {
      "name": "richardb@...",
      "type": "user"
    }
  }
]

> pulumi login
Logged in to <http://pulumi.com|pulumi.com> as ... (<https://app.pulumi.com/...>)
warning: A new version of Pulumi is available. To upgrade from version '3.27.0' to '3.28.0', run
   > powershell -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('<https://get.pulumi.com/install.ps1'))>"
or visit <https://pulumi.com/docs/reference/install/> for manual instructions and release notes.

> mkdir Pulumi
> cd Pulumi
> pulumi new csharp
This command will walk you through creating a new Pulumi project.

Enter a value or leave blank to accept the (default), and press <ENTER>.
Press ^C at any time to quit.

project name: (Pulumi2) RwbTestProject
project description: (A minimal C# Pulumi program) RWB's test project
Created project 'RwbTestProject'

Please enter your desired stack name.
To create a stack in an organization, use the format <org-name>/<stack-name> (e.g. `acmecorp/dev`).
stack name: (dev) rwb-test-stack
Created stack 'rwb-test-stack'

Installing dependencies...

running 'dotnet build -nologo .'
  Determining projects to restore...

  Restored C:\Work\Pulumi\RwbTestProject.csproj (in 1.5 sec).

  RwbTestProject -> C:\Work\Pulumi\bin\Debug\netcoreapp3.1\RwbTestProject.dll



Build succeeded.
    0 Warning(s)
    0 Error(s)

Time Elapsed 00:00:03.23

'dotnet build -nologo .' completed successfully
Finished installing dependencies

Your new project is ready to go!

To perform an initial deployment, run 'pulumi up'

warning: A new version of Pulumi is available. To upgrade from version '3.27.0' to '3.28.0', run
   > powershell -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('<https://get.pulumi.com/install.ps1'))>"
or visit <https://pulumi.com/docs/reference/install/> for manual instructions and release notes.

> REM A new thing has now appeared in the Pulumi website.
b
this looks correct, but it's hard to know for sure