-
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
Existings azurerm_app_configuration_key
broken after upgrade to 3.38.0 -> v3.46.0
#20849
Comments
Hi @Socolin , thanks for submitting this issue. tf configterraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "=3.38.0"
}
}
}
provider "azurerm" {
features {}
}
resource "azurerm_resource_group" "example" {
name = "example-resources"
location = "West Europe"
}
resource "azurerm_app_configuration" "appconf" {
name = "ttestappConf1"
resource_group_name = azurerm_resource_group.example.name
location = azurerm_resource_group.example.location
}
resource "azurerm_app_configuration_key" "test" {
configuration_store_id = azurerm_app_configuration.appconf.id
key = "SharedSentinel"
value = "4"
content_type = ""
} |
with The \00 was added there 6b3cd2c See the comment at the time, this part of the code seem sto have been removed
This is clearly a regression. |
Found the error upgrading API version from earlier version like
tf configterraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "=3.30.0"
}
}
}
provider "azurerm" {
features {}
}
resource "azurerm_resource_group" "example" {
name = "example-resources"
location = "West Europe"
}
resource "azurerm_app_configuration" "appconf" {
name = "ttestappConf1"
resource_group_name = azurerm_resource_group.example.name
location = azurerm_resource_group.example.location
}
resource "azurerm_app_configuration_key" "test" {
configuration_store_id = azurerm_app_configuration.appconf.id
key = "SharedSentinel"
value = "4"
content_type = ""
} |
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. |
Is there an existing issue for this?
Community Note
Terraform Version
v1.3.7
AzureRM Provider Version
3.46.0
Affected Resource(s)/Data Source(s)
azurerm_app_configuration_key
Terraform Configuration Files
Debug Output/Panic Output
Expected Behaviour
Should not display an error
Actual Behaviour
No response
Steps to Reproduce
Previously existing state with this resources
Important Factoids
was working in v3.38.0
References
No response
The text was updated successfully, but these errors were encountered: