Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/dasmeta/terraform-azure-redis

Terraform modules from DasMeta to manage Azure Redis and related resources
https://github.com/dasmeta/terraform-azure-redis

azure azure-redis redis terraform

Last synced: about 1 month ago
JSON representation

Terraform modules from DasMeta to manage Azure Redis and related resources

Awesome Lists containing this project

README

        

This module creates Redis Cache in Microsoft Azure. It enables connecting to the Redis instance with Private Endpoint.

## Usage
```
resource "azurerm_resource_group" "redis_rg" {
name = "redis_tf_rg"
location = "North Europe"
}

module "redis" {
source = ".../redis"

location = azurerm_resource_group.redis_rg.location
resource_group_name = azurerm_resource_group.redis_rg.name
record_name = "test-record"
records = ["11.0.1.5"]
private_dns_zone_name = "test.redis.cache.windows.net"
vnet_link_name = "test-link"
private_endpoint_name = "test-endp-1"
nic_name = "test-endp-1-nic"
redis_cache_name = "test-redis-server"
subnet_id = module.network.vnet_subnets[0]
vnet_id = module.network.vnet_id
ip_config_name = "test-config.sddsd-1bb-b40f-c3fd74fc3e5f"
}
```