Skip to content

Commit

Permalink
fixing missing backtick in var desc (#25)
Browse files Browse the repository at this point in the history
* fixing missing backtick in var desc

* version updates
  • Loading branch information
jchancellor-ms authored Jun 24, 2024
1 parent ab9d305 commit a09e7ac
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,11 @@ The following input variables are optional (have default values):
Description: A map of objects describing one or more Redis cache access policies.
- `<map key>` - The map key is deliberately arbitrary to avoid issues where map keys may be unknown at plan time.
- `name` - (Required) - The name string of the Redis Cache Access Policy. Changing this forces a new policy to be created.
- `permissions - (Required) - A string describing the permissions to be assigned to this Redis Cache Access Policy. Changing this forces a new policy to be created.
- `permissions` - (Required) - A string describing the permissions to be assigned to this Redis Cache Access Policy. Changing this forces a new policy to be created.

Example Input:

````hcl
```hcl
cache_access_policies = {
example_policy = {
name = "example policy"
Expand Down
2 changes: 1 addition & 1 deletion examples/default/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ resource "azurerm_log_analytics_workspace" "this_workspace" {
module "default" {
source = "../../"
# source = "Azure/avm-res-cache-redis/azurerm"
# version = "0.1.1"
# version = "0.1.2"
enable_telemetry = var.enable_telemetry
name = module.naming.redis_cache.name_unique
Expand Down
2 changes: 1 addition & 1 deletion examples/default/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ resource "azurerm_log_analytics_workspace" "this_workspace" {
module "default" {
source = "../../"
# source = "Azure/avm-res-cache-redis/azurerm"
# version = "0.1.1"
# version = "0.1.2"

enable_telemetry = var.enable_telemetry
name = module.naming.redis_cache.name_unique
Expand Down
2 changes: 1 addition & 1 deletion locals.version.tf.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"locals": {
"module_version": "0.1.1"
"module_version": "0.1.2"
}
}
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ variable "cache_access_policies" {
A map of objects describing one or more Redis cache access policies.
- `<map key>` - The map key is deliberately arbitrary to avoid issues where map keys may be unknown at plan time.
- `name` - (Required) - The name string of the Redis Cache Access Policy. Changing this forces a new policy to be created.
- `permissions - (Required) - A string describing the permissions to be assigned to this Redis Cache Access Policy. Changing this forces a new policy to be created.
- `permissions` - (Required) - A string describing the permissions to be assigned to this Redis Cache Access Policy. Changing this forces a new policy to be created.
Example Input:
Expand Down

0 comments on commit a09e7ac

Please sign in to comment.