Skip to content

Commit 3becb9d

Browse files
committed
update README.md
1 parent 30fc8d4 commit 3becb9d

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

README.md

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<p align="center">
1515

1616
<a href="https://www.terraform.io">
17-
<img src="https://img.shields.io/badge/terraform-v0.13-green" alt="Terraform">
17+
<img src="https://img.shields.io/badge/terraform-v0.14-green" alt="Terraform">
1818
</a>
1919
<a href="LICENSE.md">
2020
<img src="https://img.shields.io/badge/License-MIT-blue.svg" alt="Licence">
@@ -74,19 +74,20 @@ Here are some examples of how you can use this module in your inventory structur
7474
```hcl
7575
module "aurora" {
7676
source = "clouddrove/aurora/aws"
77-
version = "0.13.0"
77+
version = "0.14.0"
78+
7879
name = "backend"
79-
application = "clouddrove"
80+
repository = "https://registry.terraform.io/modules/clouddrove/aurora/aws"
8081
environment = "test"
81-
label_order = ["environment", "application", "name"]
82+
label_order = ["name", "environment"]
8283
username = "admin"
8384
database_name = "dt"
8485
engine = "aurora-mysql"
8586
engine_version = "5.7.12"
8687
subnets = "subnet-xxxxxxxxx"
8788
aws_security_group = [sg-xxxxxxxxxxx]
8889
replica_count = 1
89-
instance_type = "db.t2.medium"
90+
instance_type = "db.t2.small"
9091
apply_immediately = true
9192
skip_final_snapshot = true
9293
publicly_accessible = false
@@ -96,11 +97,11 @@ Here are some examples of how you can use this module in your inventory structur
9697
```hcl
9798
module "postgres" {
9899
source = "clouddrove/aurora/aws"
99-
version = "0.13.0"
100+
version = "0.14.0"
100101
name = "backend"
101-
application = "clouddrove"
102+
repository = "https://registry.terraform.io/modules/clouddrove/aurora/aws"
102103
environment = "test"
103-
label_order = ["environment", "application", "name"]
104+
label_order = ["name", "environment"]
104105
105106
username = "root"
106107
database_name = "test_db"
@@ -119,12 +120,11 @@ Here are some examples of how you can use this module in your inventory structur
119120
```hcl
120121
module "aurora" {
121122
source = "clouddrove/aurora/aws"
122-
version = "0.13.0"
123+
version = "0.14.0"
123124
name = "aurora-mysql-serverless"
124-
application = "clouddrove"
125+
repository = "https://registry.terraform.io/modules/clouddrove/aurora/aws"
125126
environment = "test"
126-
label_order = ["environment", "application", "name"]
127-
enable = true
127+
label_order = ["name", "environment"]
128128
serverless_enabled = true
129129
min_capacity = 1
130130
max_capacity = 4
@@ -144,11 +144,11 @@ Here are some examples of how you can use this module in your inventory structur
144144
```hcl
145145
module "postgres" {
146146
source = "clouddrove/aurora/aws"
147-
version = "0.13.0"
148-
name = "aurora-postgresql-serverless"
149-
application = "clouddrove"
147+
version = "0.14.0"
148+
name = "aurora-Postgres"
149+
repository = "https://registry.terraform.io/modules/clouddrove/aurora/aws"
150150
environment = "test"
151-
label_order = ["environment", "application", "name"]
151+
label_order = ["name", "environment"]
152152
enable = true
153153
serverless_enabled = true
154154
min_capacity = 2
@@ -175,12 +175,11 @@ Here are some examples of how you can use this module in your inventory structur
175175

176176
| Name | Description | Type | Default | Required |
177177
|------|-------------|------|---------|:--------:|
178-
| application | Application (e.g. `cd` or `clouddrove`). | `string` | `""` | no |
179178
| apply\_immediately | Determines whether or not any DB modifications are applied immediately, or during the maintenance window. | `bool` | `false` | no |
180179
| auto\_minor\_version\_upgrade | Determines whether minor engine upgrades will be performed automatically in the maintenance window. | `bool` | `true` | no |
181180
| auto\_pause | Whether to enable automatic pause. A DB cluster can be paused only when it's idle (it has no connections). | `bool` | `false` | no |
182181
| availability\_zone | The Availability Zone of the RDS instance. | `string` | `""` | no |
183-
| availability\_zones | The Availability Zone of the RDS cluster. | `list` | `[]` | no |
182+
| availability\_zones | The Availability Zone of the RDS cluster. | `list(any)` | `[]` | no |
184183
| aws\_security\_group | Specifies whether IAM Database authentication should be enabled or not. Not all versions and instances are supported. Refer to the AWS documentation to see which versions are supported. | `list(string)` | `[]` | no |
185184
| backtrack\_window | The target backtrack window, in seconds. Only available for aurora engine currently.Must be between 0 and 259200 (72 hours) | `number` | `0` | no |
186185
| backup\_retention\_period | How long to keep backups for (in days). | `number` | `7` | no |
@@ -204,8 +203,8 @@ Here are some examples of how you can use this module in your inventory structur
204203
| identifier\_prefix | Prefix for cluster and instance identifier. | `string` | `""` | no |
205204
| instance\_type | Instance type to use. | `string` | `""` | no |
206205
| kms\_key\_id | The ARN for the KMS encryption key if one is set to the cluster. | `string` | `""` | no |
207-
| label\_order | Label order, e.g. `name`,`application`. | `list` | `[]` | no |
208-
| managedby | ManagedBy, eg 'CloudDrove' or 'AnmolNagpal'. | `string` | `"anmol@clouddrove.com"` | no |
206+
| label\_order | Label order, e.g. `name`,`application`. | `list(any)` | `[]` | no |
207+
| managedby | ManagedBy, eg 'CloudDrove'. | `string` | `"hello@clouddrove.com"` | no |
209208
| max\_capacity | The maximum capacity. Valid capacity values are 1, 2, 4, 8, 16, 32, 64, 128, and 256. | `number` | `4` | no |
210209
| min\_capacity | The minimum capacity. Valid capacity values are 1, 2, 4, 8, 16, 32, 64, 128, and 256. | `number` | `2` | no |
211210
| monitoring\_interval | The interval (seconds) between points when Enhanced Monitoring metrics are collected. | `number` | `0` | no |
@@ -229,6 +228,7 @@ Here are some examples of how you can use this module in your inventory structur
229228
| replica\_scale\_min | Minimum number of replicas to allow scaling. | `number` | `2` | no |
230229
| replica\_scale\_out\_cooldown | Cooldown in seconds before allowing further scaling operations after a scale out. | `number` | `300` | no |
231230
| replication\_source\_identifier | ARN of a source DB cluster or DB instance if this DB cluster is to be created as a Read Replica. | `string` | `""` | no |
231+
| repository | Terraform current module repo | `string` | `""` | no |
232232
| seconds\_until\_auto\_pause | The time, in seconds, before an Aurora DB cluster in serverless mode is paused. Valid values are 300 through 86400. | `number` | `300` | no |
233233
| serverless\_enabled | Whether serverless is enabled or not. | `bool` | `false` | no |
234234
| skip\_final\_snapshot | Should a final snapshot be created on cluster destroy. | `bool` | `false` | no |

0 commit comments

Comments
 (0)