Deploy the Changes
Now let’s deploy our changes.
$ pulumi upPulumi computes the minimally disruptive change to achieve the desired state described by the program.
Previewing update (dev):
Type Name Plan Info
pulumi:pulumi:Stack quickstart-dev
~ └─ azure:storage:Account storage update [diff: ~tags]
Resources:
~ 1 to update
2 unchanged
Outputs:
~ ConnectionString: "DefaultEndpointsProtocol=https;AccountName=storage1b3018e9;AccountKey=...;EndpointSuffix=core.windows.net" => output<string>
Do you want to perform this update?
yes
> no
details
Pulumi will update the storage account to add the tag. The resource group hasn’t changed so it remains as-is.
Choosing yes will proceed with the update.
Do you want to perform this update? yes
Updating (dev):
Type Name Status Info
pulumi:pulumi:Stack quickstart-dev
~ └─ azure:storage:Account storage updated [diff: ~tags]
Outputs:
connectionString: "DefaultEndpointsProtocol=https;AccountName=storage1b3018e9;AccountKey=...;EndpointSuffix=core.windows.net"
Resources:
~ 1 updated
2 unchanged
Duration: 4s
Next, we’ll destroy the stack.