We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Using the Azure console or CLI it is possible to set the cache duration of a forwarding rule. But there is no such option in the azurerm provider.
forwarding_configuration
resource "azurerm_frontdoor" "example" { name = "example-FrontDoor" location = "EastUS2" resource_group_name = azurerm_resource_group.example.name enforce_backend_pools_certificate_name_check = false routing_rule { name = "exampleRoutingRule1" accepted_protocols = ["Http", "Https"] patterns_to_match = ["/*"] frontend_endpoints = ["exampleFrontendEndpoint1"] forwarding_configuration { forwarding_protocol = "MatchRequest" backend_pool_name = "exampleBackendBing" cache_enabled = true cache_use_dynamic_compression = true # Missing option :( # cache_duration = "5h" } } ... }
The text was updated successfully, but these errors were encountered:
will be closed by #12831
Sorry, something went wrong.
I have not tested since I do not work with Azure anymore, but I guess this issue can be closed since #12831 was merged.
No branches or pull requests
Community Note
Description
Using the Azure console or CLI it is possible to set the cache duration of a forwarding rule. But there is no such option in the azurerm provider.
forwarding_configuration
blockPotential Terraform Configuration
References
The text was updated successfully, but these errors were encountered: