gorgeous-monkey-78209
05/24/2023, 10:10 AMv2023-02-01
of the Azure API, which was available in the v1.99.0 Pulumi provider but we're running in to problems with Pulumi refusing to acknowledge the new AKS SKU name change that's mandatory from that version onwards. We thought we'd try a newer provider version and see if it had a newer API too but the latest API version available in v1.99.1 and up has dropped back to v2023-01-01
.
Would it be advisable to open an issue on GitHub or has anyone got any advice on if they've encountered similar issues with versioning? Thanks muchly!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`:
~ sku : {
~ name: "Base" => "Basic"
tier: "Free"
}
We've also confirmed via AZ CLI that it is already set to Base
.adorable-scooter-32619
07/23/2023, 2:21 PM