Skip to content

Commit f48d73b

Browse files
Co-authored-by: docs-sourcer[bot] <99042413+docs-sourcer[bot]@users.noreply.github.com>
1 parent de79978 commit f48d73b

File tree

14 files changed

+168
-134
lines changed

14 files changed

+168
-134
lines changed

docs/reference/modules/terraform-aws-data-storage/aurora/aurora.md

Lines changed: 45 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ import VersionBadge from '../../../../../src/components/VersionBadge.tsx';
99
import { HclListItem, HclListItemDescription, HclListItemTypeDetails, HclListItemDefaultValue, HclGeneralListItem } from '../../../../../src/components/HclListItem.tsx';
1010
import { ModuleUsage } from "../../../../../src/components/ModuleUsage";
1111

12-
<VersionBadge repoTitle="Data Storage Modules" version="0.40.1" lastModifiedVersion="0.40.1"/>
12+
<VersionBadge repoTitle="Data Storage Modules" version="0.40.2" lastModifiedVersion="0.40.2"/>
1313

1414
# Aurora Module
1515

16-
<a href="https://github.com/gruntwork-io/terraform-aws-data-storage/tree/v0.40.1/modules/aurora" className="link-button" title="View the source code for this module in GitHub.">View Source</a>
16+
<a href="https://github.com/gruntwork-io/terraform-aws-data-storage/tree/v0.40.2/modules/aurora" className="link-button" title="View the source code for this module in GitHub.">View Source</a>
1717

18-
<a href="https://github.com/gruntwork-io/terraform-aws-data-storage/releases/tag/v0.40.1" className="link-button" title="Release notes for only versions which impacted this module.">Release Notes</a>
18+
<a href="https://github.com/gruntwork-io/terraform-aws-data-storage/releases/tag/v0.40.2" className="link-button" title="Release notes for only versions which impacted this module.">Release Notes</a>
1919

2020
This module creates an Amazon Aurora, a MySQL and PostgreSQL compatible relational database built for the cloud.
2121

@@ -59,7 +59,7 @@ Cluster](http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Aurora.Managing.h
5959
## How do you configure this module?
6060

6161
This module allows you to configure a number of parameters, such as backup windows, maintenance window, port number,
62-
and encryption. For a list of all available variables and their descriptions, see [variables.tf](https://github.com/gruntwork-io/terraform-aws-data-storage/tree/v0.40.1/modules/aurora/variables.tf).
62+
and encryption. For a list of all available variables and their descriptions, see [variables.tf](https://github.com/gruntwork-io/terraform-aws-data-storage/tree/v0.40.2/modules/aurora/variables.tf).
6363

6464
## How do you create a cross-region read replica cluster?
6565

@@ -77,7 +77,7 @@ module "replica" {
7777
}
7878
```
7979

80-
See the example [here](https://github.com/gruntwork-io/terraform-aws-data-storage/tree/v0.40.1/examples/aurora-with-cross-region-replica) for more details.
80+
See the example [here](https://github.com/gruntwork-io/terraform-aws-data-storage/tree/v0.40.2/examples/aurora-with-cross-region-replica) for more details.
8181

8282
## How do you destroy a cross-region read replica?
8383

@@ -137,7 +137,7 @@ see [Limitations of Aurora Serverless](https://docs.aws.amazon.com/AmazonRDS/lat
137137
138138
module "aurora" {
139139
140-
source = "git::[email protected]:gruntwork-io/terraform-aws-data-storage.git//modules/aurora?ref=v0.40.1"
140+
source = "git::[email protected]:gruntwork-io/terraform-aws-data-storage.git//modules/aurora?ref=v0.40.2"
141141
142142
# ----------------------------------------------------------------------------------------------------
143143
# REQUIRED VARIABLES
@@ -240,6 +240,10 @@ module "aurora" {
240240
# instances
241241
cluster_instances_minutes_between_maintenance_windows = 180
242242
243+
# A map of tags to apply to the Aurora RDS Cluster. The key is the tag name
244+
# and the value is the tag value.
245+
cluster_tags = {}
246+
243247
# Copy all the Aurora cluster tags to snapshots. Default is false.
244248
copy_tags_to_snapshot = false
245249
@@ -315,6 +319,10 @@ module "aurora" {
315319
# accounts to database accounts is enabled. Disabled by default.
316320
iam_database_authentication_enabled = false
317321
322+
# A map of tags to apply to the Aurora RDS Instances. The key is the tag name
323+
# and the value is the tag value.
324+
instance_tags = {}
325+
318326
# The ARN of a KMS key that should be used to encrypt data on disk. Only used
319327
# if var.storage_encrypted is true. If you leave this null, the default RDS
320328
# KMS key for the account will be used.
@@ -498,7 +506,7 @@ module "aurora" {
498506
# ------------------------------------------------------------------------------------------------------
499507
500508
terraform {
501-
source = "git::[email protected]:gruntwork-io/terraform-aws-data-storage.git//modules/aurora?ref=v0.40.1"
509+
source = "git::[email protected]:gruntwork-io/terraform-aws-data-storage.git//modules/aurora?ref=v0.40.2"
502510
}
503511
504512
inputs = {
@@ -604,6 +612,10 @@ inputs = {
604612
# instances
605613
cluster_instances_minutes_between_maintenance_windows = 180
606614
615+
# A map of tags to apply to the Aurora RDS Cluster. The key is the tag name
616+
# and the value is the tag value.
617+
cluster_tags = {}
618+
607619
# Copy all the Aurora cluster tags to snapshots. Default is false.
608620
copy_tags_to_snapshot = false
609621
@@ -679,6 +691,10 @@ inputs = {
679691
# accounts to database accounts is enabled. Disabled by default.
680692
iam_database_authentication_enabled = false
681693
694+
# A map of tags to apply to the Aurora RDS Instances. The key is the tag name
695+
# and the value is the tag value.
696+
instance_tags = {}
697+
682698
# The ARN of a KMS key that should be used to encrypt data on disk. Only used
683699
# if var.storage_encrypted is true. If you leave this null, the default RDS
684700
# KMS key for the account will be used.
@@ -1051,6 +1067,15 @@ Amount of time, in minutes, between maintenance windows of the cluster instances
10511067
<HclListItemDefaultValue defaultValue="180"/>
10521068
</HclListItem>
10531069

1070+
<HclListItem name="cluster_tags" requirement="optional" type="map(string)">
1071+
<HclListItemDescription>
1072+
1073+
A map of tags to apply to the Aurora RDS Cluster. The key is the tag name and the value is the tag value.
1074+
1075+
</HclListItemDescription>
1076+
<HclListItemDefaultValue defaultValue="{}"/>
1077+
</HclListItem>
1078+
10541079
<HclListItem name="copy_tags_to_snapshot" requirement="optional" type="bool">
10551080
<HclListItemDescription>
10561081

@@ -1204,6 +1229,15 @@ Specifies whether mappings of AWS Identity and Access Management (IAM) accounts
12041229
<HclListItemDefaultValue defaultValue="false"/>
12051230
</HclListItem>
12061231

1232+
<HclListItem name="instance_tags" requirement="optional" type="map(string)">
1233+
<HclListItemDescription>
1234+
1235+
A map of tags to apply to the Aurora RDS Instances. The key is the tag name and the value is the tag value.
1236+
1237+
</HclListItemDescription>
1238+
<HclListItemDefaultValue defaultValue="{}"/>
1239+
</HclListItem>
1240+
12071241
<HclListItem name="kms_key_arn" requirement="optional" type="string">
12081242
<HclListItemDescription>
12091243

@@ -1579,11 +1613,11 @@ Timeout for DB updating
15791613
<!-- ##DOCS-SOURCER-START
15801614
{
15811615
"originalSources": [
1582-
"https://github.com/gruntwork-io/terraform-aws-data-storage/tree/v0.40.1/modules/aurora/readme.md",
1583-
"https://github.com/gruntwork-io/terraform-aws-data-storage/tree/v0.40.1/modules/aurora/variables.tf",
1584-
"https://github.com/gruntwork-io/terraform-aws-data-storage/tree/v0.40.1/modules/aurora/outputs.tf"
1616+
"https://github.com/gruntwork-io/terraform-aws-data-storage/tree/v0.40.2/modules/aurora/readme.md",
1617+
"https://github.com/gruntwork-io/terraform-aws-data-storage/tree/v0.40.2/modules/aurora/variables.tf",
1618+
"https://github.com/gruntwork-io/terraform-aws-data-storage/tree/v0.40.2/modules/aurora/outputs.tf"
15851619
],
15861620
"sourcePlugin": "module-catalog-api",
1587-
"hash": "d577da10245bf900e6cdadd9edeb3a42"
1621+
"hash": "6d998376c9fc7ee1325c474a64bfad4f"
15881622
}
15891623
##DOCS-SOURCER-END -->

docs/reference/modules/terraform-aws-data-storage/backup-plan/backup-plan.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ import VersionBadge from '../../../../../src/components/VersionBadge.tsx';
99
import { HclListItem, HclListItemDescription, HclListItemTypeDetails, HclListItemDefaultValue, HclGeneralListItem } from '../../../../../src/components/HclListItem.tsx';
1010
import { ModuleUsage } from "../../../../../src/components/ModuleUsage";
1111

12-
<VersionBadge repoTitle="Data Storage Modules" version="0.40.1" lastModifiedVersion="0.38.1"/>
12+
<VersionBadge repoTitle="Data Storage Modules" version="0.40.2" lastModifiedVersion="0.38.1"/>
1313

1414
# Backup Plan Module
1515

16-
<a href="https://github.com/gruntwork-io/terraform-aws-data-storage/tree/v0.40.1/modules/backup-plan" className="link-button" title="View the source code for this module in GitHub.">View Source</a>
16+
<a href="https://github.com/gruntwork-io/terraform-aws-data-storage/tree/v0.40.2/modules/backup-plan" className="link-button" title="View the source code for this module in GitHub.">View Source</a>
1717

1818
<a href="https://github.com/gruntwork-io/terraform-aws-data-storage/releases/tag/v0.38.1" className="link-button" title="Release notes for only versions which impacted this module.">Release Notes</a>
1919

@@ -22,7 +22,7 @@ This Terraform Module creates the following AWS Backup resources:
2222
1. Backup plans - specifying **how and when** to back things up
2323
2. Resource selections - specifying **which resources** to back up
2424

25-
You associate your plans with a [Backup vault](https://github.com/gruntwork-io/terraform-aws-data-storage/tree/v0.40.1/modules/backup-vault).
25+
You associate your plans with a [Backup vault](https://github.com/gruntwork-io/terraform-aws-data-storage/tree/v0.40.2/modules/backup-vault).
2626

2727
## What is a Backup Plan?
2828

@@ -91,7 +91,7 @@ module "backup_plan" {
9191

9292
## How do you troubleshoot Backup jobs?
9393

94-
See [Troubleshooting AWS Backup](https://github.com/gruntwork-io/terraform-aws-data-storage/tree/v0.40.1/core-concepts.md#troubleshooting-aws-backup) in the core-concepts guide.
94+
See [Troubleshooting AWS Backup](https://github.com/gruntwork-io/terraform-aws-data-storage/tree/v0.40.2/core-concepts.md#troubleshooting-aws-backup) in the core-concepts guide.
9595

9696
## Sample Usage
9797

@@ -106,7 +106,7 @@ See [Troubleshooting AWS Backup](https://github.com/gruntwork-io/terraform-aws-d
106106
107107
module "backup_plan" {
108108
109-
source = "git::[email protected]:gruntwork-io/terraform-aws-data-storage.git//modules/backup-plan?ref=v0.40.1"
109+
source = "git::[email protected]:gruntwork-io/terraform-aws-data-storage.git//modules/backup-plan?ref=v0.40.2"
110110
111111
# ----------------------------------------------------------------------------------------------------
112112
# REQUIRED VARIABLES
@@ -137,7 +137,7 @@ module "backup_plan" {
137137
# ------------------------------------------------------------------------------------------------------
138138
139139
terraform {
140-
source = "git::[email protected]:gruntwork-io/terraform-aws-data-storage.git//modules/backup-plan?ref=v0.40.1"
140+
source = "git::[email protected]:gruntwork-io/terraform-aws-data-storage.git//modules/backup-plan?ref=v0.40.2"
141141
}
142142
143143
inputs = {
@@ -244,11 +244,11 @@ The ARN of the IAM service role used by Backup plans
244244
<!-- ##DOCS-SOURCER-START
245245
{
246246
"originalSources": [
247-
"https://github.com/gruntwork-io/terraform-aws-data-storage/tree/v0.40.1/modules/backup-plan/readme.md",
248-
"https://github.com/gruntwork-io/terraform-aws-data-storage/tree/v0.40.1/modules/backup-plan/variables.tf",
249-
"https://github.com/gruntwork-io/terraform-aws-data-storage/tree/v0.40.1/modules/backup-plan/outputs.tf"
247+
"https://github.com/gruntwork-io/terraform-aws-data-storage/tree/v0.40.2/modules/backup-plan/readme.md",
248+
"https://github.com/gruntwork-io/terraform-aws-data-storage/tree/v0.40.2/modules/backup-plan/variables.tf",
249+
"https://github.com/gruntwork-io/terraform-aws-data-storage/tree/v0.40.2/modules/backup-plan/outputs.tf"
250250
],
251251
"sourcePlugin": "module-catalog-api",
252-
"hash": "260a960f08adc00ed70833619fc2d675"
252+
"hash": "d05562573c0caea256708f3b93935ce9"
253253
}
254254
##DOCS-SOURCER-END -->

docs/reference/modules/terraform-aws-data-storage/backup-vault/backup-vault.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ import VersionBadge from '../../../../../src/components/VersionBadge.tsx';
99
import { HclListItem, HclListItemDescription, HclListItemTypeDetails, HclListItemDefaultValue, HclGeneralListItem } from '../../../../../src/components/HclListItem.tsx';
1010
import { ModuleUsage } from "../../../../../src/components/ModuleUsage";
1111

12-
<VersionBadge repoTitle="Data Storage Modules" version="0.40.1" lastModifiedVersion="0.38.1"/>
12+
<VersionBadge repoTitle="Data Storage Modules" version="0.40.2" lastModifiedVersion="0.38.1"/>
1313

1414
# Backup Vault Module
1515

16-
<a href="https://github.com/gruntwork-io/terraform-aws-data-storage/tree/v0.40.1/modules/backup-vault" className="link-button" title="View the source code for this module in GitHub.">View Source</a>
16+
<a href="https://github.com/gruntwork-io/terraform-aws-data-storage/tree/v0.40.2/modules/backup-vault" className="link-button" title="View the source code for this module in GitHub.">View Source</a>
1717

1818
<a href="https://github.com/gruntwork-io/terraform-aws-data-storage/releases/tag/v0.38.1" className="link-button" title="Release notes for only versions which impacted this module.">Release Notes</a>
1919

@@ -96,7 +96,7 @@ then you will end up with many potentially large recovery points that you cannot
9696
9797
module "backup_vault" {
9898
99-
source = "git::[email protected]:gruntwork-io/terraform-aws-data-storage.git//modules/backup-vault?ref=v0.40.1"
99+
source = "git::[email protected]:gruntwork-io/terraform-aws-data-storage.git//modules/backup-vault?ref=v0.40.2"
100100
101101
# ----------------------------------------------------------------------------------------------------
102102
# REQUIRED VARIABLES
@@ -140,7 +140,7 @@ module "backup_vault" {
140140
# ------------------------------------------------------------------------------------------------------
141141
142142
terraform {
143-
source = "git::[email protected]:gruntwork-io/terraform-aws-data-storage.git//modules/backup-vault?ref=v0.40.1"
143+
source = "git::[email protected]:gruntwork-io/terraform-aws-data-storage.git//modules/backup-vault?ref=v0.40.2"
144144
}
145145
146146
inputs = {
@@ -303,11 +303,11 @@ A map of tags assigned to the vault resources, including those inherited from th
303303
<!-- ##DOCS-SOURCER-START
304304
{
305305
"originalSources": [
306-
"https://github.com/gruntwork-io/terraform-aws-data-storage/tree/v0.40.1/modules/backup-vault/readme.md",
307-
"https://github.com/gruntwork-io/terraform-aws-data-storage/tree/v0.40.1/modules/backup-vault/variables.tf",
308-
"https://github.com/gruntwork-io/terraform-aws-data-storage/tree/v0.40.1/modules/backup-vault/outputs.tf"
306+
"https://github.com/gruntwork-io/terraform-aws-data-storage/tree/v0.40.2/modules/backup-vault/readme.md",
307+
"https://github.com/gruntwork-io/terraform-aws-data-storage/tree/v0.40.2/modules/backup-vault/variables.tf",
308+
"https://github.com/gruntwork-io/terraform-aws-data-storage/tree/v0.40.2/modules/backup-vault/outputs.tf"
309309
],
310310
"sourcePlugin": "module-catalog-api",
311-
"hash": "12d506fd04a7459b6bc2c8cd75415dc1"
311+
"hash": "c1d0ff5ca68a4b35967e0776e2af8e79"
312312
}
313313
##DOCS-SOURCER-END -->

docs/reference/modules/terraform-aws-data-storage/dms/dms.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ import VersionBadge from '../../../../../src/components/VersionBadge.tsx';
99
import { HclListItem, HclListItemDescription, HclListItemTypeDetails, HclListItemDefaultValue, HclGeneralListItem } from '../../../../../src/components/HclListItem.tsx';
1010
import { ModuleUsage } from "../../../../../src/components/ModuleUsage";
1111

12-
<VersionBadge repoTitle="Data Storage Modules" version="0.40.1" lastModifiedVersion="0.36.0"/>
12+
<VersionBadge repoTitle="Data Storage Modules" version="0.40.2" lastModifiedVersion="0.36.0"/>
1313

1414
# DMS Module
1515

16-
<a href="https://github.com/gruntwork-io/terraform-aws-data-storage/tree/v0.40.1/modules/dms" className="link-button" title="View the source code for this module in GitHub.">View Source</a>
16+
<a href="https://github.com/gruntwork-io/terraform-aws-data-storage/tree/v0.40.2/modules/dms" className="link-button" title="View the source code for this module in GitHub.">View Source</a>
1717

1818
<a href="https://github.com/gruntwork-io/terraform-aws-data-storage/releases/tag/v0.36.0" className="link-button" title="Release notes for only versions which impacted this module.">Release Notes</a>
1919

@@ -32,7 +32,7 @@ This module creates an Amazon Database Migration Service (DMS) that makes it pos
3232
3333
module "dms" {
3434
35-
source = "git::[email protected]:gruntwork-io/terraform-aws-data-storage.git//modules/dms?ref=v0.40.1"
35+
source = "git::[email protected]:gruntwork-io/terraform-aws-data-storage.git//modules/dms?ref=v0.40.2"
3636
3737
# ----------------------------------------------------------------------------------------------------
3838
# REQUIRED VARIABLES
@@ -244,7 +244,7 @@ module "dms" {
244244
# ------------------------------------------------------------------------------------------------------
245245
246246
terraform {
247-
source = "git::[email protected]:gruntwork-io/terraform-aws-data-storage.git//modules/dms?ref=v0.40.1"
247+
source = "git::[email protected]:gruntwork-io/terraform-aws-data-storage.git//modules/dms?ref=v0.40.2"
248248
}
249249
250250
inputs = {
@@ -944,11 +944,11 @@ A map of maps containing the replication tasks created and their full output of
944944
<!-- ##DOCS-SOURCER-START
945945
{
946946
"originalSources": [
947-
"https://github.com/gruntwork-io/terraform-aws-data-storage/tree/v0.40.1/modules/dms/readme.md",
948-
"https://github.com/gruntwork-io/terraform-aws-data-storage/tree/v0.40.1/modules/dms/variables.tf",
949-
"https://github.com/gruntwork-io/terraform-aws-data-storage/tree/v0.40.1/modules/dms/outputs.tf"
947+
"https://github.com/gruntwork-io/terraform-aws-data-storage/tree/v0.40.2/modules/dms/readme.md",
948+
"https://github.com/gruntwork-io/terraform-aws-data-storage/tree/v0.40.2/modules/dms/variables.tf",
949+
"https://github.com/gruntwork-io/terraform-aws-data-storage/tree/v0.40.2/modules/dms/outputs.tf"
950950
],
951951
"sourcePlugin": "module-catalog-api",
952-
"hash": "2a1d0a22935256bc1ee8b806c8ae03f7"
952+
"hash": "a6388230f2450d84ee9fff0f58da8434"
953953
}
954954
##DOCS-SOURCER-END -->

0 commit comments

Comments
 (0)