Skip to content

Commit 74ca929

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

File tree

11 files changed

+112
-112
lines changed

11 files changed

+112
-112
lines changed

docs/reference/modules/terraform-aws-utilities/executable-dependency/executable-dependency.md

Lines changed: 9 additions & 9 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="Terraform Utility Modules" version="0.10.6" lastModifiedVersion="0.10.5"/>
12+
<VersionBadge repoTitle="Terraform Utility Modules" version="0.10.7" lastModifiedVersion="0.10.5"/>
1313

1414
# Executable Dependency
1515

16-
<a href="https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.6/modules/executable-dependency" 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-utilities/tree/v0.10.7/modules/executable-dependency" 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-utilities/releases/tag/v0.10.5" className="link-button" title="Release notes for only versions which impacted this module.">Release Notes</a>
1919

@@ -27,7 +27,7 @@ if it's not installed already: e.g., [terraform-aws-eks](https://github.com/grun
2727

2828
## Example code
2929

30-
See the [executable-dependency example](https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.6/examples/executable-dependency) for working sample code.
30+
See the [executable-dependency example](https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.7/examples/executable-dependency) for working sample code.
3131

3232
## Usage
3333

@@ -76,7 +76,7 @@ will either be the path of the executable on the system `PATH` or a path in `ins
7676
7777
module "executable_dependency" {
7878
79-
source = "git::[email protected]:gruntwork-io/terraform-aws-utilities.git//modules/executable-dependency?ref=v0.10.6"
79+
source = "git::[email protected]:gruntwork-io/terraform-aws-utilities.git//modules/executable-dependency?ref=v0.10.7"
8080
8181
# ----------------------------------------------------------------------------------------------------
8282
# REQUIRED VARIABLES
@@ -127,7 +127,7 @@ module "executable_dependency" {
127127
# ------------------------------------------------------------------------------------------------------
128128
129129
terraform {
130-
source = "git::[email protected]:gruntwork-io/terraform-aws-utilities.git//modules/executable-dependency?ref=v0.10.6"
130+
source = "git::[email protected]:gruntwork-io/terraform-aws-utilities.git//modules/executable-dependency?ref=v0.10.7"
131131
}
132132
133133
inputs = {
@@ -246,11 +246,11 @@ The path to use to run the executable. Will either be the path of the executable
246246
<!-- ##DOCS-SOURCER-START
247247
{
248248
"originalSources": [
249-
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.6/modules/executable-dependency/readme.md",
250-
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.6/modules/executable-dependency/variables.tf",
251-
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.6/modules/executable-dependency/outputs.tf"
249+
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.7/modules/executable-dependency/readme.md",
250+
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.7/modules/executable-dependency/variables.tf",
251+
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.7/modules/executable-dependency/outputs.tf"
252252
],
253253
"sourcePlugin": "module-catalog-api",
254-
"hash": "777d54322d9919cfc12f8d7285a0d236"
254+
"hash": "798d0c4e5cc3f1ad526e511d30cdd710"
255255
}
256256
##DOCS-SOURCER-END -->

docs/reference/modules/terraform-aws-utilities/instance-type/instance-type.md

Lines changed: 9 additions & 9 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="Terraform Utility Modules" version="0.10.6" lastModifiedVersion="0.9.6"/>
12+
<VersionBadge repoTitle="Terraform Utility Modules" version="0.10.7" lastModifiedVersion="0.9.6"/>
1313

1414
# Instance Type
1515

16-
<a href="https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.6/modules/instance-type" 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-utilities/tree/v0.10.7/modules/instance-type" 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-utilities/releases/tag/v0.9.6" className="link-button" title="Release notes for only versions which impacted this module.">Release Notes</a>
1919

@@ -25,7 +25,7 @@ module to automatically figure out which instance type you should use.
2525

2626
## Example code
2727

28-
See the [instance-type example](https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.6/examples/instance-type) for working sample code.
28+
See the [instance-type example](https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.7/examples/instance-type) for working sample code.
2929

3030
## Usage
3131

@@ -67,7 +67,7 @@ will be `t2.micro`, as that's available in all AZs in `eu-west-1`. However, if y
6767
6868
module "instance_type" {
6969
70-
source = "git::[email protected]:gruntwork-io/terraform-aws-utilities.git//modules/instance-type?ref=v0.10.6"
70+
source = "git::[email protected]:gruntwork-io/terraform-aws-utilities.git//modules/instance-type?ref=v0.10.7"
7171
7272
# ----------------------------------------------------------------------------------------------------
7373
# REQUIRED VARIABLES
@@ -94,7 +94,7 @@ module "instance_type" {
9494
# ------------------------------------------------------------------------------------------------------
9595
9696
terraform {
97-
source = "git::[email protected]:gruntwork-io/terraform-aws-utilities.git//modules/instance-type?ref=v0.10.6"
97+
source = "git::[email protected]:gruntwork-io/terraform-aws-utilities.git//modules/instance-type?ref=v0.10.7"
9898
}
9999
100100
inputs = {
@@ -160,11 +160,11 @@ The recommended instance type to use in this AWS region. This will be the first
160160
<!-- ##DOCS-SOURCER-START
161161
{
162162
"originalSources": [
163-
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.6/modules/instance-type/readme.md",
164-
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.6/modules/instance-type/variables.tf",
165-
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.6/modules/instance-type/outputs.tf"
163+
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.7/modules/instance-type/readme.md",
164+
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.7/modules/instance-type/variables.tf",
165+
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.7/modules/instance-type/outputs.tf"
166166
],
167167
"sourcePlugin": "module-catalog-api",
168-
"hash": "eeca64149e5e75cbeee764e76c82a57a"
168+
"hash": "84d59ee31d6f17ab4b56faa6f5e17087"
169169
}
170170
##DOCS-SOURCER-END -->

docs/reference/modules/terraform-aws-utilities/join-path/join-path.md

Lines changed: 9 additions & 9 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="Terraform Utility Modules" version="0.10.6" lastModifiedVersion="0.9.6"/>
12+
<VersionBadge repoTitle="Terraform Utility Modules" version="0.10.7" lastModifiedVersion="0.9.6"/>
1313

1414
# Join Path Module
1515

16-
<a href="https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.6/modules/join-path" 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-utilities/tree/v0.10.7/modules/join-path" 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-utilities/releases/tag/v0.9.6" className="link-button" title="Release notes for only versions which impacted this module.">Release Notes</a>
1919

@@ -25,7 +25,7 @@ This module uses Python under the hood so, the Python must be installed on the O
2525

2626
## Example code
2727

28-
See the [join-path example](https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.6/examples/join-path) for working sample code.
28+
See the [join-path example](https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.7/examples/join-path) for working sample code.
2929

3030
## Usage
3131

@@ -61,7 +61,7 @@ joined_path = "${module.path.path}"
6161
6262
module "join_path" {
6363
64-
source = "git::[email protected]:gruntwork-io/terraform-aws-utilities.git//modules/join-path?ref=v0.10.6"
64+
source = "git::[email protected]:gruntwork-io/terraform-aws-utilities.git//modules/join-path?ref=v0.10.7"
6565
6666
# ----------------------------------------------------------------------------------------------------
6767
# REQUIRED VARIABLES
@@ -86,7 +86,7 @@ module "join_path" {
8686
# ------------------------------------------------------------------------------------------------------
8787
8888
terraform {
89-
source = "git::[email protected]:gruntwork-io/terraform-aws-utilities.git//modules/join-path?ref=v0.10.6"
89+
source = "git::[email protected]:gruntwork-io/terraform-aws-utilities.git//modules/join-path?ref=v0.10.7"
9090
}
9191
9292
inputs = {
@@ -149,11 +149,11 @@ A list of folder and file names to combine into a path, using the proper path se
149149
<!-- ##DOCS-SOURCER-START
150150
{
151151
"originalSources": [
152-
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.6/modules/join-path/readme.md",
153-
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.6/modules/join-path/variables.tf",
154-
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.6/modules/join-path/outputs.tf"
152+
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.7/modules/join-path/readme.md",
153+
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.7/modules/join-path/variables.tf",
154+
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.7/modules/join-path/outputs.tf"
155155
],
156156
"sourcePlugin": "module-catalog-api",
157-
"hash": "28a081597bd83e00f7ddee4777db1bf3"
157+
"hash": "bd4fb422aa20aa7eddf7c0bdb5082cf9"
158158
}
159159
##DOCS-SOURCER-END -->

docs/reference/modules/terraform-aws-utilities/list-remove/list-remove.md

Lines changed: 9 additions & 9 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="Terraform Utility Modules" version="0.10.6" lastModifiedVersion="0.9.6"/>
12+
<VersionBadge repoTitle="Terraform Utility Modules" version="0.10.7" lastModifiedVersion="0.9.6"/>
1313

1414
# List Remove Module
1515

16-
<a href="https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.6/modules/list-remove" 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-utilities/tree/v0.10.7/modules/list-remove" 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-utilities/releases/tag/v0.9.6" className="link-button" title="Release notes for only versions which impacted this module.">Release Notes</a>
1919

@@ -43,7 +43,7 @@ The output `new_list` should be the list `["us-east-1a", "us-east-1d", "us-east-
4343

4444
## Example code
4545

46-
See the [list-remove example](https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.6/examples/list-remove) for working sample code.
46+
See the [list-remove example](https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.7/examples/list-remove) for working sample code.
4747

4848
## Sample Usage
4949

@@ -58,7 +58,7 @@ See the [list-remove example](https://github.com/gruntwork-io/terraform-aws-util
5858
5959
module "list_remove" {
6060
61-
source = "git::[email protected]:gruntwork-io/terraform-aws-utilities.git//modules/list-remove?ref=v0.10.6"
61+
source = "git::[email protected]:gruntwork-io/terraform-aws-utilities.git//modules/list-remove?ref=v0.10.7"
6262
6363
# ----------------------------------------------------------------------------------------------------
6464
# REQUIRED VARIABLES
@@ -85,7 +85,7 @@ module "list_remove" {
8585
# ------------------------------------------------------------------------------------------------------
8686
8787
terraform {
88-
source = "git::[email protected]:gruntwork-io/terraform-aws-utilities.git//modules/list-remove?ref=v0.10.6"
88+
source = "git::[email protected]:gruntwork-io/terraform-aws-utilities.git//modules/list-remove?ref=v0.10.7"
8989
}
9090
9191
inputs = {
@@ -160,11 +160,11 @@ Any types represent complex values of variable type. For details, please consult
160160
<!-- ##DOCS-SOURCER-START
161161
{
162162
"originalSources": [
163-
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.6/modules/list-remove/readme.md",
164-
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.6/modules/list-remove/variables.tf",
165-
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.6/modules/list-remove/outputs.tf"
163+
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.7/modules/list-remove/readme.md",
164+
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.7/modules/list-remove/variables.tf",
165+
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.7/modules/list-remove/outputs.tf"
166166
],
167167
"sourcePlugin": "module-catalog-api",
168-
"hash": "2545f4e5b19c55a4a10e17c699ca2c40"
168+
"hash": "f750718a27aeb9d44274644856d893ba"
169169
}
170170
##DOCS-SOURCER-END -->

docs/reference/modules/terraform-aws-utilities/operating-system/operating-system.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,23 +9,23 @@ 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="Terraform Utility Modules" version="0.10.6" lastModifiedVersion="0.9.6"/>
12+
<VersionBadge repoTitle="Terraform Utility Modules" version="0.10.7" lastModifiedVersion="0.9.6"/>
1313

1414
# Operating System Module
1515

16-
<a href="https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.6/modules/operating-system" 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-utilities/tree/v0.10.7/modules/operating-system" 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-utilities/releases/tag/v0.9.6" className="link-button" title="Release notes for only versions which impacted this module.">Release Notes</a>
1919

2020
This is a module that can be used to figure out what operating system is being used to run Terraform. This may be used
2121
to modify Terraform's behavior depending on the OS, such as modifying the way you format file paths on Linux vs
22-
Windows (see also the [join-path module](https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.6/modules/join-path)).
22+
Windows (see also the [join-path module](https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.7/modules/join-path)).
2323

2424
This module uses Python under the hood so, the Python must be installed on the OS.
2525

2626
## Example code
2727

28-
See the [operating-system example](https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.6/examples/operating-system) for working sample code.
28+
See the [operating-system example](https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.7/examples/operating-system) for working sample code.
2929

3030
## Usage
3131

@@ -52,11 +52,11 @@ path_separator = "${module.os.path_separator}"
5252
<!-- ##DOCS-SOURCER-START
5353
{
5454
"originalSources": [
55-
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.6/modules/operating-system/readme.md",
56-
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.6/modules/operating-system/variables.tf",
57-
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.6/modules/operating-system/outputs.tf"
55+
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.7/modules/operating-system/readme.md",
56+
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.7/modules/operating-system/variables.tf",
57+
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.7/modules/operating-system/outputs.tf"
5858
],
5959
"sourcePlugin": "module-catalog-api",
60-
"hash": "80e5d79df5a9a1d7c97920f45429e808"
60+
"hash": "1aed22657c077f9dac52c4ce69753a98"
6161
}
6262
##DOCS-SOURCER-END -->

0 commit comments

Comments
 (0)