Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ import VersionBadge from '../../../../../src/components/VersionBadge.tsx';
import { HclListItem, HclListItemDescription, HclListItemTypeDetails, HclListItemDefaultValue, HclGeneralListItem } from '../../../../../src/components/HclListItem.tsx';
import { ModuleUsage } from "../../../../../src/components/ModuleUsage";

<VersionBadge repoTitle="Terraform Utility Modules" version="0.9.2" lastModifiedVersion="0.8.0"/>
<VersionBadge repoTitle="Terraform Utility Modules" version="0.9.3" lastModifiedVersion="0.8.0"/>

# Executable Dependency

<a href="https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.9.2/modules/executable-dependency" className="link-button" title="View the source code for this module in GitHub.">View Source</a>
<a href="https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.9.3/modules/executable-dependency" className="link-button" title="View the source code for this module in GitHub.">View Source</a>

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

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

## Example code

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

## Usage

Expand Down Expand Up @@ -76,7 +76,7 @@ will either be the path of the executable on the system `PATH` or a path in `ins

module "executable_dependency" {

source = "git::git@github.com:gruntwork-io/terraform-aws-utilities.git//modules/executable-dependency?ref=v0.9.2"
source = "git::git@github.com:gruntwork-io/terraform-aws-utilities.git//modules/executable-dependency?ref=v0.9.3"

# ----------------------------------------------------------------------------------------------------
# REQUIRED VARIABLES
Expand Down Expand Up @@ -127,7 +127,7 @@ module "executable_dependency" {
# ------------------------------------------------------------------------------------------------------

terraform {
source = "git::git@github.com:gruntwork-io/terraform-aws-utilities.git//modules/executable-dependency?ref=v0.9.2"
source = "git::git@github.com:gruntwork-io/terraform-aws-utilities.git//modules/executable-dependency?ref=v0.9.3"
}

inputs = {
Expand Down Expand Up @@ -247,11 +247,11 @@ The path to use to run the executable. Will either be the path of the executable
<!-- ##DOCS-SOURCER-START
{
"originalSources": [
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.9.2/modules/executable-dependency/readme.md",
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.9.2/modules/executable-dependency/variables.tf",
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.9.2/modules/executable-dependency/outputs.tf"
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.9.3/modules/executable-dependency/readme.md",
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.9.3/modules/executable-dependency/variables.tf",
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.9.3/modules/executable-dependency/outputs.tf"
],
"sourcePlugin": "module-catalog-api",
"hash": "1cb485bbacaf47d985a0a04297985dfd"
"hash": "1405240bc03431fa3c3d2557af1cae81"
}
##DOCS-SOURCER-END -->
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ import VersionBadge from '../../../../../src/components/VersionBadge.tsx';
import { HclListItem, HclListItemDescription, HclListItemTypeDetails, HclListItemDefaultValue, HclGeneralListItem } from '../../../../../src/components/HclListItem.tsx';
import { ModuleUsage } from "../../../../../src/components/ModuleUsage";

<VersionBadge repoTitle="Terraform Utility Modules" version="0.9.2" lastModifiedVersion="0.9.2"/>
<VersionBadge repoTitle="Terraform Utility Modules" version="0.9.3" lastModifiedVersion="0.9.2"/>

# Instance Type

<a href="https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.9.2/modules/instance-type" className="link-button" title="View the source code for this module in GitHub.">View Source</a>
<a href="https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.9.3/modules/instance-type" className="link-button" title="View the source code for this module in GitHub.">View Source</a>

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

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

## Example code

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

## Usage

Expand Down Expand Up @@ -67,7 +67,7 @@ will be `t2.micro`, as that's available in all AZs in `eu-west-1`. However, if y

module "instance_type" {

source = "git::git@github.com:gruntwork-io/terraform-aws-utilities.git//modules/instance-type?ref=v0.9.2"
source = "git::git@github.com:gruntwork-io/terraform-aws-utilities.git//modules/instance-type?ref=v0.9.3"

# ----------------------------------------------------------------------------------------------------
# REQUIRED VARIABLES
Expand All @@ -94,7 +94,7 @@ module "instance_type" {
# ------------------------------------------------------------------------------------------------------

terraform {
source = "git::git@github.com:gruntwork-io/terraform-aws-utilities.git//modules/instance-type?ref=v0.9.2"
source = "git::git@github.com:gruntwork-io/terraform-aws-utilities.git//modules/instance-type?ref=v0.9.3"
}

inputs = {
Expand Down Expand Up @@ -161,11 +161,11 @@ The recommended instance type to use in this AWS region. This will be the first
<!-- ##DOCS-SOURCER-START
{
"originalSources": [
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.9.2/modules/instance-type/readme.md",
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.9.2/modules/instance-type/variables.tf",
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.9.2/modules/instance-type/outputs.tf"
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.9.3/modules/instance-type/readme.md",
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.9.3/modules/instance-type/variables.tf",
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.9.3/modules/instance-type/outputs.tf"
],
"sourcePlugin": "module-catalog-api",
"hash": "d3e40618cadd6d50ecb02790be65ec7e"
"hash": "fa63a43f8d172f49e930332069f60b4b"
}
##DOCS-SOURCER-END -->
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ import VersionBadge from '../../../../../src/components/VersionBadge.tsx';
import { HclListItem, HclListItemDescription, HclListItemTypeDetails, HclListItemDefaultValue, HclGeneralListItem } from '../../../../../src/components/HclListItem.tsx';
import { ModuleUsage } from "../../../../../src/components/ModuleUsage";

<VersionBadge repoTitle="Terraform Utility Modules" version="0.9.2" lastModifiedVersion="0.7.0"/>
<VersionBadge repoTitle="Terraform Utility Modules" version="0.9.3" lastModifiedVersion="0.7.0"/>

# Join Path Module

<a href="https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.9.2/modules/join-path" className="link-button" title="View the source code for this module in GitHub.">View Source</a>
<a href="https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.9.3/modules/join-path" className="link-button" title="View the source code for this module in GitHub.">View Source</a>

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

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

## Example code

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

## Usage

Expand Down Expand Up @@ -61,7 +61,7 @@ joined_path = "${module.path.path}"

module "join_path" {

source = "git::git@github.com:gruntwork-io/terraform-aws-utilities.git//modules/join-path?ref=v0.9.2"
source = "git::git@github.com:gruntwork-io/terraform-aws-utilities.git//modules/join-path?ref=v0.9.3"

# ----------------------------------------------------------------------------------------------------
# REQUIRED VARIABLES
Expand All @@ -86,7 +86,7 @@ module "join_path" {
# ------------------------------------------------------------------------------------------------------

terraform {
source = "git::git@github.com:gruntwork-io/terraform-aws-utilities.git//modules/join-path?ref=v0.9.2"
source = "git::git@github.com:gruntwork-io/terraform-aws-utilities.git//modules/join-path?ref=v0.9.3"
}

inputs = {
Expand Down Expand Up @@ -150,11 +150,11 @@ A list of folder and file names to combine into a path, using the proper path se
<!-- ##DOCS-SOURCER-START
{
"originalSources": [
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.9.2/modules/join-path/readme.md",
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.9.2/modules/join-path/variables.tf",
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.9.2/modules/join-path/outputs.tf"
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.9.3/modules/join-path/readme.md",
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.9.3/modules/join-path/variables.tf",
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.9.3/modules/join-path/outputs.tf"
],
"sourcePlugin": "module-catalog-api",
"hash": "49214841b76aaa719087de4cacc0870b"
"hash": "c8cacc7f298f8da7fa0a2afd3c11c1ba"
}
##DOCS-SOURCER-END -->
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ import VersionBadge from '../../../../../src/components/VersionBadge.tsx';
import { HclListItem, HclListItemDescription, HclListItemTypeDetails, HclListItemDefaultValue, HclGeneralListItem } from '../../../../../src/components/HclListItem.tsx';
import { ModuleUsage } from "../../../../../src/components/ModuleUsage";

<VersionBadge repoTitle="Terraform Utility Modules" version="0.9.2" lastModifiedVersion="0.7.0"/>
<VersionBadge repoTitle="Terraform Utility Modules" version="0.9.3" lastModifiedVersion="0.7.0"/>

# List Remove Module

<a href="https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.9.2/modules/list-remove" className="link-button" title="View the source code for this module in GitHub.">View Source</a>
<a href="https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.9.3/modules/list-remove" className="link-button" title="View the source code for this module in GitHub.">View Source</a>

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

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

## Example code

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

## Sample Usage

Expand All @@ -58,7 +58,7 @@ See the [list-remove example](https://github.com/gruntwork-io/terraform-aws-util

module "list_remove" {

source = "git::git@github.com:gruntwork-io/terraform-aws-utilities.git//modules/list-remove?ref=v0.9.2"
source = "git::git@github.com:gruntwork-io/terraform-aws-utilities.git//modules/list-remove?ref=v0.9.3"

# ----------------------------------------------------------------------------------------------------
# REQUIRED VARIABLES
Expand All @@ -85,7 +85,7 @@ module "list_remove" {
# ------------------------------------------------------------------------------------------------------

terraform {
source = "git::git@github.com:gruntwork-io/terraform-aws-utilities.git//modules/list-remove?ref=v0.9.2"
source = "git::git@github.com:gruntwork-io/terraform-aws-utilities.git//modules/list-remove?ref=v0.9.3"
}

inputs = {
Expand Down Expand Up @@ -161,11 +161,11 @@ Any types represent complex values of variable type. For details, please consult
<!-- ##DOCS-SOURCER-START
{
"originalSources": [
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.9.2/modules/list-remove/readme.md",
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.9.2/modules/list-remove/variables.tf",
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.9.2/modules/list-remove/outputs.tf"
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.9.3/modules/list-remove/readme.md",
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.9.3/modules/list-remove/variables.tf",
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.9.3/modules/list-remove/outputs.tf"
],
"sourcePlugin": "module-catalog-api",
"hash": "891cdad4cbab7df33fc0abdb06fdad12"
"hash": "127dea9bcb931ad7c8a36ea03c3ce7db"
}
##DOCS-SOURCER-END -->
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,23 @@ import VersionBadge from '../../../../../src/components/VersionBadge.tsx';
import { HclListItem, HclListItemDescription, HclListItemTypeDetails, HclListItemDefaultValue, HclGeneralListItem } from '../../../../../src/components/HclListItem.tsx';
import { ModuleUsage } from "../../../../../src/components/ModuleUsage";

<VersionBadge repoTitle="Terraform Utility Modules" version="0.9.2" lastModifiedVersion="0.8.0"/>
<VersionBadge repoTitle="Terraform Utility Modules" version="0.9.3" lastModifiedVersion="0.8.0"/>

# Operating System Module

<a href="https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.9.2/modules/operating-system" className="link-button" title="View the source code for this module in GitHub.">View Source</a>
<a href="https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.9.3/modules/operating-system" className="link-button" title="View the source code for this module in GitHub.">View Source</a>

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

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

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

## Example code

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

## Usage

Expand Down Expand Up @@ -53,11 +53,11 @@ path_separator = "${module.os.path_separator}"
<!-- ##DOCS-SOURCER-START
{
"originalSources": [
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.9.2/modules/operating-system/readme.md",
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.9.2/modules/operating-system/variables.tf",
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.9.2/modules/operating-system/outputs.tf"
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.9.3/modules/operating-system/readme.md",
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.9.3/modules/operating-system/variables.tf",
"https://github.com/gruntwork-io/terraform-aws-utilities/tree/v0.9.3/modules/operating-system/outputs.tf"
],
"sourcePlugin": "module-catalog-api",
"hash": "29c869a7703bea9818aa479e2483094c"
"hash": "9e2149bfe4e0b9e2166affdfc0b18826"
}
##DOCS-SOURCER-END -->
Loading