Terraform: 0.11.13
AzureRM: 1.23
azurerm_api_managementresource "azurerm_api_management" "apim" {
name = "apim-${var.environment}"
location = "${azurerm_resource_group.apim.location}"
resource_group_name = "${azurerm_resource_group.apim.name}"
publisher_name = "Sean"
publisher_email = "${var.apim_email}"
sku {
name = "${var.apim_sku}"
capacity = "${var.apim_capacity}"
}
security {
# These parameters are the wrong way round - true means enable
disable_backend_ssl30 = false
disable_backend_tls10 = false
disable_backend_tls11 = false
disable_frontend_ssl30 = false
disable_frontend_tls10 = false
disable_frontend_tls11 = false
disable_triple_des_chipers = false
}
}
Setting a disable_
Setting a disable_
Setting a disable_
Setting a disable_
terraform applyI will work on this.
Hi @ReenuSaluja,
not sure if you already had some time to look into this issue. If so, can you please advice on how the solution will look afterwards ? It seems that just switching over to the expected behavior could cause impact.
This has been released in version 1.36.0 of the provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. As an example:
provider "azurerm" {
version = "~> 1.36.0"
}
# ... other configuration ...
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.
If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. If you feel I made an error 🤖 🙉 , please reach out to my human friends 👉 [email protected]. Thanks!
Most helpful comment
I will work on this.