Skip to content

Commit b64727e

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

File tree

11 files changed

+120
-121
lines changed

11 files changed

+120
-121
lines changed

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

Lines changed: 11 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="Terraform Utility Modules" version="0.10.4" lastModifiedVersion="0.9.6"/>
12+
<VersionBadge repoTitle="Terraform Utility Modules" version="0.10.5" lastModifiedVersion="0.10.5"/>
1313

1414
# Executable Dependency
1515

16-
<a href="https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.4/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.5/modules/executable-dependency" 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-utilities/releases/tag/v0.9.6" 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-utilities/releases/tag/v0.10.5" 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 check if an executable is already installed, and if it's not, download it from a
2121
URL. This is useful if your Terraform code has an external dependency and you want that dependency to be auto installed
@@ -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.4/examples/executable-dependency) for working sample code.
30+
See the [executable-dependency example](https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.5/examples/executable-dependency) for working sample code.
3131

3232
## Usage
3333

@@ -36,7 +36,7 @@ page](https://github.com/gruntwork-io/terraform-aws-utilities/releases):
3636

3737
```hcl
3838
module "path" {
39-
source = "git::[email protected]:gruntwork-io/terraform-aws-utilities.git//modules/join-path?ref=<VERSION>"
39+
source = "git::[email protected]:gruntwork-io/terraform-aws-utilities.git//modules/executable-dependency?ref=<VERSION>"
4040
4141
executable = "kubergrunt"
4242
download_url = "https://github.com/gruntwork-io/kubergrunt/releases/download/v0.5.13/kubergrunt"
@@ -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.4"
79+
source = "git::[email protected]:gruntwork-io/terraform-aws-utilities.git//modules/executable-dependency?ref=v0.10.5"
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.4"
130+
source = "git::[email protected]:gruntwork-io/terraform-aws-utilities.git//modules/executable-dependency?ref=v0.10.5"
131131
}
132132
133133
inputs = {
@@ -247,11 +247,11 @@ The path to use to run the executable. Will either be the path of the executable
247247
<!-- ##DOCS-SOURCER-START
248248
{
249249
"originalSources": [
250-
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.4/modules/executable-dependency/readme.md",
251-
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.4/modules/executable-dependency/variables.tf",
252-
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.4/modules/executable-dependency/outputs.tf"
250+
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.5/modules/executable-dependency/readme.md",
251+
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.5/modules/executable-dependency/variables.tf",
252+
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.5/modules/executable-dependency/outputs.tf"
253253
],
254254
"sourcePlugin": "module-catalog-api",
255-
"hash": "674445179958eed59383512d772e0152"
255+
"hash": "a1cf271dd05d6a89bbae97759f2fa33d"
256256
}
257257
##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.4" lastModifiedVersion="0.9.6"/>
12+
<VersionBadge repoTitle="Terraform Utility Modules" version="0.10.5" lastModifiedVersion="0.9.6"/>
1313

1414
# Instance Type
1515

16-
<a href="https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.4/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.5/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.4/examples/instance-type) for working sample code.
28+
See the [instance-type example](https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.5/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.4"
70+
source = "git::[email protected]:gruntwork-io/terraform-aws-utilities.git//modules/instance-type?ref=v0.10.5"
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.4"
97+
source = "git::[email protected]:gruntwork-io/terraform-aws-utilities.git//modules/instance-type?ref=v0.10.5"
9898
}
9999
100100
inputs = {
@@ -161,11 +161,11 @@ The recommended instance type to use in this AWS region. This will be the first
161161
<!-- ##DOCS-SOURCER-START
162162
{
163163
"originalSources": [
164-
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.4/modules/instance-type/readme.md",
165-
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.4/modules/instance-type/variables.tf",
166-
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.4/modules/instance-type/outputs.tf"
164+
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.5/modules/instance-type/readme.md",
165+
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.5/modules/instance-type/variables.tf",
166+
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.5/modules/instance-type/outputs.tf"
167167
],
168168
"sourcePlugin": "module-catalog-api",
169-
"hash": "33186d23f6bc9c5c78dca7ce54b7c566"
169+
"hash": "ca8d081a3bafa78f1fe5e033697ca29e"
170170
}
171171
##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.4" lastModifiedVersion="0.9.6"/>
12+
<VersionBadge repoTitle="Terraform Utility Modules" version="0.10.5" lastModifiedVersion="0.9.6"/>
1313

1414
# Join Path Module
1515

16-
<a href="https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.4/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.5/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.4/examples/join-path) for working sample code.
28+
See the [join-path example](https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.5/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.4"
64+
source = "git::[email protected]:gruntwork-io/terraform-aws-utilities.git//modules/join-path?ref=v0.10.5"
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.4"
89+
source = "git::[email protected]:gruntwork-io/terraform-aws-utilities.git//modules/join-path?ref=v0.10.5"
9090
}
9191
9292
inputs = {
@@ -150,11 +150,11 @@ A list of folder and file names to combine into a path, using the proper path se
150150
<!-- ##DOCS-SOURCER-START
151151
{
152152
"originalSources": [
153-
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.4/modules/join-path/readme.md",
154-
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.4/modules/join-path/variables.tf",
155-
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.4/modules/join-path/outputs.tf"
153+
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.5/modules/join-path/readme.md",
154+
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.5/modules/join-path/variables.tf",
155+
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.5/modules/join-path/outputs.tf"
156156
],
157157
"sourcePlugin": "module-catalog-api",
158-
"hash": "962140136bd92fec34b557c774d49bc9"
158+
"hash": "a54a4a68a72268f03c53f7ffffa7097e"
159159
}
160160
##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.4" lastModifiedVersion="0.9.6"/>
12+
<VersionBadge repoTitle="Terraform Utility Modules" version="0.10.5" lastModifiedVersion="0.9.6"/>
1313

1414
# List Remove Module
1515

16-
<a href="https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.4/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.5/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.4/examples/list-remove) for working sample code.
46+
See the [list-remove example](https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.5/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.4"
61+
source = "git::[email protected]:gruntwork-io/terraform-aws-utilities.git//modules/list-remove?ref=v0.10.5"
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.4"
88+
source = "git::[email protected]:gruntwork-io/terraform-aws-utilities.git//modules/list-remove?ref=v0.10.5"
8989
}
9090
9191
inputs = {
@@ -161,11 +161,11 @@ Any types represent complex values of variable type. For details, please consult
161161
<!-- ##DOCS-SOURCER-START
162162
{
163163
"originalSources": [
164-
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.4/modules/list-remove/readme.md",
165-
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.4/modules/list-remove/variables.tf",
166-
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.4/modules/list-remove/outputs.tf"
164+
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.5/modules/list-remove/readme.md",
165+
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.5/modules/list-remove/variables.tf",
166+
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.5/modules/list-remove/outputs.tf"
167167
],
168168
"sourcePlugin": "module-catalog-api",
169-
"hash": "1cb1b484eb382e00c5cb4e1d59afb0cd"
169+
"hash": "d8add57c82a0352dc87965ceba32d481"
170170
}
171171
##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.4" lastModifiedVersion="0.9.6"/>
12+
<VersionBadge repoTitle="Terraform Utility Modules" version="0.10.5" lastModifiedVersion="0.9.6"/>
1313

1414
# Operating System Module
1515

16-
<a href="https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.4/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.5/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.4/modules/join-path)).
22+
Windows (see also the [join-path module](https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.5/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.4/examples/operating-system) for working sample code.
28+
See the [operating-system example](https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.5/examples/operating-system) for working sample code.
2929

3030
## Usage
3131

@@ -53,11 +53,11 @@ path_separator = "${module.os.path_separator}"
5353
<!-- ##DOCS-SOURCER-START
5454
{
5555
"originalSources": [
56-
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.4/modules/operating-system/readme.md",
57-
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.4/modules/operating-system/variables.tf",
58-
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.4/modules/operating-system/outputs.tf"
56+
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.5/modules/operating-system/readme.md",
57+
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.5/modules/operating-system/variables.tf",
58+
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.10.5/modules/operating-system/outputs.tf"
5959
],
6060
"sourcePlugin": "module-catalog-api",
61-
"hash": "85f7d2959b294f43c0e3babdb61678b3"
61+
"hash": "73d8d2a5ad28cb4e20d7ab5817547104"
6262
}
6363
##DOCS-SOURCER-END -->

0 commit comments

Comments
 (0)