-
Notifications
You must be signed in to change notification settings - Fork 4.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[TestCase] azurerm_maps_account - update sku_name value in the test case #23563
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One comment around the property deprecation, but this otherwise LGTM 👍
@@ -40,6 +40,8 @@ The following arguments are supported: | |||
|
|||
* `sku_name` - (Required) The SKU of the Azure Maps Account. Possible values are `S0`, `S1` and `G2`. Changing this forces a new resource to be created. | |||
|
|||
~> **Note:** `S0` and `S1` are deprecated by Service API. Suggest to use `G2`. Please see more at this [document](https://learn.microsoft.com/azure/azure-maps/how-to-manage-pricing-tier). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
~> **Note:** `S0` and `S1` are deprecated by Service API. Suggest to use `G2`. Please see more at this [document](https://learn.microsoft.com/azure/azure-maps/how-to-manage-pricing-tier). | |
~> **Note:** Gen1 SKUs (`S0` and `S1`) are deprecated and can no longer be used for new deployments, which should instead use a Gen2 SKU (`G2`) - more information can be found [in the Azure documentation](https://learn.microsoft.com/azure/azure-maps/how-to-manage-pricing-tier). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks. Updated
@tombuildsstuff , thanks for the comment. I updated PR. Please take another look. Thanks. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @neil-yechenwei LGTM!
I'm going to lock this pull request because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active contributions. |
Recently, test cases about Maps Account in Teamcity are failed. After investigated, I found that skus
S0
andS1
and kindGen1
are deprecated. So I updated test cases.Note: I didn't remove the deprecated skus from the validation since we shouldn't block the user who is using the existing resource with S0 and S1.