You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Inspec is now failing when working with Resource Groups. I am receiving the following error. This was working 2 weeks ago.
Azure Resource Group : /resourcegroups/my-resource-group /subscriptions/***/resourcegroups/
× Incompatible api version provided for the `azure_resource_group` resource.
The latest api version suggested by the Azure REST API is 2022-12-01.
Error message from the Azure REST API:
The api-version '2022-12-01' is invalid. The supported versions are '2023-03-01-preview,2022-12-01,2022-11-01-preview,2022-09-01,2022-06-01,2022-05-01,2022-03-01-preview,2022-01-01,2021-04-01,2021-01-01,2020-10-01,2020-09-01,2020-08-01,2020-07-01,2020-06-01,2020-05-01,2020-01-01,2019-11-01,2019-10-01,2019-09-01,2019-08-01,2019-07-01,2019-06-01,2019-05-10,2019-05-01,2019-03-01,2018-11-01,2018-09-01,2018-08-01,2018-07-01,2018-06-01,2018-05-01,2018-02-01,2018-01-01,2017-12-01,2017-08-01,2017-06-01,2017-05-10,2017-05-01,2017-03-01,2016-09-01,2016-07-01,2016-06-01,2016-02-01,2015-11-01,2015-01-01,2014-04-01-preview,2014-04-01,2014-01-01,2013-03-01,2014-02-26,2014-04'.
If we specify api_version 2022-09-01 then the check passes, example:
describe azure_resource_group(name: resource_group, api_version: '2022-09-01') do
it { should exist }
its('api_version_used_for_query_state') { should eq 'user_provided' }
its('api_version_used_for_query') { should eq '2022-09-01' }
end
Possible Solution
I dont have a solution only a work around
The text was updated successfully, but these errors were encountered:
× azure_resource_groups: Azure: Confirm standard deployment of resource groups (1 failed)
× Azure Resource Group : /resourcegroups/ rg-dev-ae-network /subscriptions/***/resourcegroups/
Incompatible api version provided for the azure_resource_group resource.
The latest api version suggested by the Azure REST API is 2024-08-01.
Error message from the Azure REST API:
The api-version '2024-08-01' is invalid. The supported versions are '2024-06-01-preview,2024-03-01,2023-07-01,2023-07-01-preview,2023-03-01-preview,2022-12-01,2022-11-01-preview,2022-09-01,2022-06-01,2022-05-01,2022-03-01-preview,2022-01-01,2021-04-01,2021-01-01,2020-10-01,2020-09-01,2020-08-01,2020-07-01,2020-06-01,2020-05-01,2020-01-01,2019-11-01,2019-10-01,2019-09-01,2019-08-01,2019-07-01,2019-06-01,2019-05-10,2019-05-01,2019-03-01,2018-11-01,2018-09-01,2018-08-01,2018-07-01,2018-06-01,2018-05-01,2018-02-01,2018-01-01,2017-12-01,2017-08-01,2017-06-01,2017-05-10,2017-05-01,2017-03-01,2016-09-01,2016-07-01,2016-06-01,2016-02-01,2015-11-01,2015-01-01,2014-04-01-preview,2014-04-01,2014-01-01,2013-03-01,2014-02-26,2014-04'.
Describe the problem
Inspec is now failing when working with Resource Groups. I am receiving the following error. This was working 2 weeks ago.
Inpec.yml contents:
If we specify api_version
2022-09-01
then the check passes, example:Possible Solution
I dont have a solution only a work around
The text was updated successfully, but these errors were encountered: