Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/dasmeta/terraform-azure-redis
- Owner: dasmeta
- License: apache-2.0
- Created: 2022-08-11T10:59:08.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-13T13:39:36.000Z (10 months ago)
- Last Synced: 2024-03-13T14:51:53.269Z (10 months ago)
- Topics: azure, azure-redis, redis, terraform
- Language: HCL
- Homepage: https://www.dasmeta.com
- Size: 18.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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"
}
```