Skip to content

Commit

Permalink
fix versioning and docs (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcincuber authored Dec 11, 2023
1 parent ba2522c commit c1a6099
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 6 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,14 @@ module "redis" {
| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.3.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 4.15.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.28.0 |
| <a name="requirement_random"></a> [random](#requirement\_random) | >= 3.4.3 |

## Providers

| Name | Version |
|------|---------|
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 4.15.0 |
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.28.0 |
| <a name="provider_random"></a> [random](#provider\_random) | >= 3.4.3 |

## Modules
Expand Down Expand Up @@ -77,6 +77,7 @@ No modules.
| <a name="input_apply_immediately"></a> [apply\_immediately](#input\_apply\_immediately) | Specifies whether any modifications are applied immediately, or during the next maintenance window. | `bool` | `false` | no |
| <a name="input_at_rest_encryption_enabled"></a> [at\_rest\_encryption\_enabled](#input\_at\_rest\_encryption\_enabled) | Whether to enable encryption at rest. | `bool` | `true` | no |
| <a name="input_auth_token"></a> [auth\_token](#input\_auth\_token) | The password used to access a password protected server. Can be specified only if `transit_encryption_enabled = true`. | `string` | `null` | no |
| <a name="input_auth_token_update_strategy"></a> [auth\_token\_update\_strategy](#input\_auth\_token\_update\_strategy) | Strategy to use when updating the auth\_token. Valid values are SET, ROTATE, and DELETE. Defaults to ROTATE | `string` | `"ROTATE"` | no |
| <a name="input_auto_minor_version_upgrade"></a> [auto\_minor\_version\_upgrade](#input\_auto\_minor\_version\_upgrade) | n/a | `bool` | `true` | no |
| <a name="input_automatic_failover_enabled"></a> [automatic\_failover\_enabled](#input\_automatic\_failover\_enabled) | Specifies whether a read-only replica will be automatically promoted to read/write primary if the existing primary fails. If enabled, number\_cache\_clusters must be greater than 1. Must be enabled for Redis (cluster mode enabled) replication groups. | `bool` | `true` | no |
| <a name="input_cluster_mode_enabled"></a> [cluster\_mode\_enabled](#input\_cluster\_mode\_enabled) | Enable creation of a native redis cluster. | `bool` | `false` | no |
Expand Down
5 changes: 4 additions & 1 deletion examples/basic/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ terraform {
required_version = ">= 1.3.0"

required_providers {
aws = ">= 4.15.0"
aws = {
source = "hashicorp/aws"
version = ">= 5.28.0"
}
}
}

Expand Down
13 changes: 10 additions & 3 deletions versions.tf
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
terraform {
required_version = ">= 1.6.0"
required_version = ">= 1.3.0"

required_providers {
aws = ">= 5.0.0"
random = ">= 3.4.3"
aws = {
source = "hashicorp/aws"
version = ">= 5.28.0"
}

random = {
source = "hashicorp/random"
version = ">= 3.4.3"
}
}
}

0 comments on commit c1a6099

Please sign in to comment.