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
Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
If you are interested in working on this issue or have submitted a pull request, please leave a comment
Description
For the azurerm_redis_cache resource, having AOF data persistence would be great. You currently only support RBD.
New or Affected Resource(s)
azurerm_redis_cache
Potential Terraform Configuration
resource"azurerm_resource_group""test" {
name="redis-resources"location="West US"
}
resource"azurerm_storage_account""test" {
name="redissa"resource_group_name="${azurerm_resource_group.test.name}"location="${azurerm_resource_group.test.location}"account_tier="Standard"account_replication_type="GRS"
}
# NOTE: the Name used for Redis needs to be globally uniqueresource"azurerm_redis_cache""test" {
name="tf-redis-pbkup"location="${azurerm_resource_group.test.location}"resource_group_name="${azurerm_resource_group.test.name}"capacity=3family="P"sku_name="Premium"enable_non_ssl_port=falseredis_configuration {
aof_backup_enabled=trueaof_storage_connection_string="DefaultEndpointsProtocol=https;BlobEndpoint=${azurerm_storage_account.test.primary_blob_endpoint};AccountName=${azurerm_storage_account.test.name};AccountKey=${azurerm_storage_account.test.primary_access_key}"
}
}
The text was updated successfully, but these errors were encountered:
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 👉 hashibot-feedback@hashicorp.com. Thanks!
ghost
locked and limited conversation to collaborators
May 4, 2019
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Community Note
Description
For the
azurerm_redis_cache
resource, having AOF data persistence would be great. You currently only support RBD.New or Affected Resource(s)
Potential Terraform Configuration
The text was updated successfully, but these errors were encountered: