This message was deleted.
# general
s
This message was deleted.
g
For reference to the actual problem that kicked this off, this is the actually error flow we get when trying to run
pulumi up
to make the changes using provider
v1.99.0
with API `v2023-02-01`:
error: Code="SkuNotAvailable" Message="Basic managed cluster SKU name is invalid. 'Basic' has been replaced by 'Base' since v2023-02-01. "
This is with the code being updated to declare the SKU name as
Base
. I also tried editing the Pulumi state to set the SKU name to
Base
and then ran a refresh and it wants to update it back to `Basic`:
Copy code
~ sku                    : {
      ~ name: "Base" => "Basic"
        tier: "Free"
    }
We've also confirmed via AZ CLI that it is already set to
Base
.
a
HI @gorgeous-monkey-78209, how do you fixed this problem? I am currently running into the same Thanks