Skip to content

Commit 1194a22

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

File tree

7 files changed

+74
-57
lines changed

7 files changed

+74
-57
lines changed

docs/reference/modules/terraform-aws-server/attach-eni/attach-eni.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="Module Server" version="1.0.1" lastModifiedVersion="0.15.14"/>
12+
<VersionBadge repoTitle="Module Server" version="1.0.2" lastModifiedVersion="0.15.14"/>
1313

1414
# Attach ENI Scripts
1515

16-
<a href="https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.1/modules/attach-eni" 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-server/tree/v1.0.2/modules/attach-eni" 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-server/releases/tag/v0.15.14" className="link-button" title="Release notes for only versions which impacted this module.">Release Notes</a>
1919

@@ -30,7 +30,7 @@ This folder contains scripts you can use to attach [Elastic Network Interfaces
3030

3131
An ENI allows you to have IP addresses that remain static, even if the underlying EC2 Instances are changing.
3232

33-
Check out the [attach-eni example](https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.1/examples/attach-eni) for how to use these scripts with Terraform.
33+
Check out the [attach-eni example](https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.2/examples/attach-eni) for how to use these scripts with Terraform.
3434

3535
## Installing the attach-eni script
3636

@@ -47,7 +47,7 @@ The `attach-eni` script has the following prerequisites:
4747
1. It must be run as root
4848
2. It must be run on an EC2 instance
4949
3. The EC2 instance must have an IAM role with permissions to search ENIs and EC2 tags, as well as attach ENIs (see the
50-
[attach-eni example](https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.1/examples/attach-eni))
50+
[attach-eni example](https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.2/examples/attach-eni))
5151
4. The EC2 instance must have the AWS CLI and jq installed
5252

5353
Typically, you'll want to run the `attach-eni` script in the User Data of your EC2 instances so it attaches the ENI at
@@ -70,11 +70,11 @@ This tells the script to try find and attach an ENI with the same `Name` tag as
7070
<!-- ##DOCS-SOURCER-START
7171
{
7272
"originalSources": [
73-
"https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.1/modules/attach-eni/readme.md",
74-
"https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.1/modules/attach-eni/variables.tf",
75-
"https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.1/modules/attach-eni/outputs.tf"
73+
"https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.2/modules/attach-eni/readme.md",
74+
"https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.2/modules/attach-eni/variables.tf",
75+
"https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.2/modules/attach-eni/outputs.tf"
7676
],
7777
"sourcePlugin": "module-catalog-api",
78-
"hash": "db5f90d5ce868af8dd5f28352e43d0f8"
78+
"hash": "40d7a51d20caff7008133c36f82f1a81"
7979
}
8080
##DOCS-SOURCER-END -->

docs/reference/modules/terraform-aws-server/disable-instance-metadata/disable-instance-metadata.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="Module Server" version="1.0.1" lastModifiedVersion="0.13.4"/>
12+
<VersionBadge repoTitle="Module Server" version="1.0.2" lastModifiedVersion="0.13.4"/>
1313

1414
# Disable Instance Metadata Access script
1515

16-
<a href="https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.1/modules/disable-instance-metadata" 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-server/tree/v1.0.2/modules/disable-instance-metadata" 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-server/releases/tag/v0.13.4" className="link-button" title="Release notes for only versions which impacted this module.">Release Notes</a>
1919

@@ -26,7 +26,7 @@ Once that is done, you can call this script to further secure your instance by d
2626
`disable-instance-metadata`: This script can be run on an EC2 instance to disable further access to the Instance Metadata service from that instance. It uses
2727
the AWS API to disable access to the endpoint.
2828

29-
Check out the [route53-helpers example](https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.1/examples/route53-helpers) for how to use these scripts with Packer and Terraform.
29+
Check out the [route53-helpers example](https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.2/examples/route53-helpers) for how to use these scripts with Packer and Terraform.
3030

3131
## Installing the scripts
3232

@@ -42,7 +42,7 @@ The `disable-instance-metadata` script has the following prerequisites:
4242

4343
1. It must be run on an EC2 instance
4444
2. The EC2 instance must have an IAM role with permissions to modify the Instance Metadata service's options. See the
45-
[route53-helpers example](https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.1/examples/route53-helpers)) for a reference implementation.
45+
[route53-helpers example](https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.2/examples/route53-helpers)) for a reference implementation.
4646
3. The EC2 instance must have the AWS CLI (version 2.2.37 or higher), unzip and jq installed.
4747

4848
Run the `disable-instance-metadata` script in the User Data of your EC2 instances, after any required calls to the Instance Metadata service have been made. This way, your instances will still be able to access the Instance Metadata service when needed, but will also disable further access to the service upon boot.
@@ -74,11 +74,11 @@ This will result in subsequent calls to the Instance Metadata service to fail.
7474
<!-- ##DOCS-SOURCER-START
7575
{
7676
"originalSources": [
77-
"https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.1/modules/disable-instance-metadata/readme.md",
78-
"https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.1/modules/disable-instance-metadata/variables.tf",
79-
"https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.1/modules/disable-instance-metadata/outputs.tf"
77+
"https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.2/modules/disable-instance-metadata/readme.md",
78+
"https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.2/modules/disable-instance-metadata/variables.tf",
79+
"https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.2/modules/disable-instance-metadata/outputs.tf"
8080
],
8181
"sourcePlugin": "module-catalog-api",
82-
"hash": "e350585a17cb941db5ab5038ab549d65"
82+
"hash": "f6ed10e4eff146b6dbd35d4cd277b72b"
8383
}
8484
##DOCS-SOURCER-END -->

docs/reference/modules/terraform-aws-server/ec2-backup/ec2-backup.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="Module Server" version="1.0.1" lastModifiedVersion="0.15.10"/>
12+
<VersionBadge repoTitle="Module Server" version="1.0.2" lastModifiedVersion="0.15.10"/>
1313

1414
# EC2 Backup Module
1515

16-
<a href="https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.1/modules/ec2-backup" 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-server/tree/v1.0.2/modules/ec2-backup" 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-server/releases/tag/v0.15.10" className="link-button" title="Release notes for only versions which impacted this module.">Release Notes</a>
1919

@@ -32,7 +32,7 @@ This module makes it easy to deploy a [data lifecycle manager policy](https://do
3232
3333
module "ec_2_backup" {
3434
35-
source = "git::[email protected]:gruntwork-io/terraform-aws-server.git//modules/ec2-backup?ref=v1.0.1"
35+
source = "git::[email protected]:gruntwork-io/terraform-aws-server.git//modules/ec2-backup?ref=v1.0.2"
3636
3737
# ----------------------------------------------------------------------------------------------------
3838
# REQUIRED VARIABLES
@@ -98,7 +98,7 @@ module "ec_2_backup" {
9898
# ------------------------------------------------------------------------------------------------------
9999
100100
terraform {
101-
source = "git::[email protected]:gruntwork-io/terraform-aws-server.git//modules/ec2-backup?ref=v1.0.1"
101+
source = "git::[email protected]:gruntwork-io/terraform-aws-server.git//modules/ec2-backup?ref=v1.0.2"
102102
}
103103
104104
inputs = {
@@ -304,11 +304,11 @@ The name of the IAM role associated with the data lifecycle manager
304304
<!-- ##DOCS-SOURCER-START
305305
{
306306
"originalSources": [
307-
"https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.1/modules/ec2-backup/readme.md",
308-
"https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.1/modules/ec2-backup/variables.tf",
309-
"https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.1/modules/ec2-backup/outputs.tf"
307+
"https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.2/modules/ec2-backup/readme.md",
308+
"https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.2/modules/ec2-backup/variables.tf",
309+
"https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.2/modules/ec2-backup/outputs.tf"
310310
],
311311
"sourcePlugin": "module-catalog-api",
312-
"hash": "dfb955ff93849aa2b7449b536806d90b"
312+
"hash": "5a3e7287bd3249b5874640b07e5dd697"
313313
}
314314
##DOCS-SOURCER-END -->

docs/reference/modules/terraform-aws-server/persistent-ebs-volume/persistent-ebs-volume.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="Module Server" version="1.0.1" lastModifiedVersion="1.0.1"/>
12+
<VersionBadge repoTitle="Module Server" version="1.0.2" lastModifiedVersion="1.0.1"/>
1313

1414
# Persistent EBS Volume Scripts
1515

16-
<a href="https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.1/modules/persistent-ebs-volume" 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-server/tree/v1.0.2/modules/persistent-ebs-volume" 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-server/releases/tag/v1.0.1" className="link-button" title="Release notes for only versions which impacted this module.">Release Notes</a>
1919

@@ -40,7 +40,7 @@ volume can only be associated with a single EC2 Instance, so if you need the dat
4040
multiple servers, check out the [Amazon Elastic File System](https://aws.amazon.com/efs/), which provides a service
4141
built on top of NFS.
4242

43-
Check out the [persistent-ebs-volume example](https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.1/examples/persistent-ebs-volume) for how to use these scripts with
43+
Check out the [persistent-ebs-volume example](https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.2/examples/persistent-ebs-volume) for how to use these scripts with
4444
Terraform.
4545

4646
## Installing the scripts
@@ -58,7 +58,7 @@ The scripts have the following prerequisites:
5858
1. They must be run as root
5959
2. They must be run on an EC2 instance
6060
3. The EC2 instance must have an IAM role with permissions to list, attach, and detach volumes (see the
61-
[persistent-ebs-volume example](https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.1/examples/persistent-ebs-volume))
61+
[persistent-ebs-volume example](https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.2/examples/persistent-ebs-volume))
6262
4. The EC2 instance must have the AWS CLI and jq installed
6363

6464
Run the `mount-ebs-volume` script in the User Data of your EC2 instances so it mounts the volume at boot. Run the
@@ -219,11 +219,11 @@ detaching the device.
219219
<!-- ##DOCS-SOURCER-START
220220
{
221221
"originalSources": [
222-
"https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.1/modules/persistent-ebs-volume/readme.md",
223-
"https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.1/modules/persistent-ebs-volume/variables.tf",
224-
"https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.1/modules/persistent-ebs-volume/outputs.tf"
222+
"https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.2/modules/persistent-ebs-volume/readme.md",
223+
"https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.2/modules/persistent-ebs-volume/variables.tf",
224+
"https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.2/modules/persistent-ebs-volume/outputs.tf"
225225
],
226226
"sourcePlugin": "module-catalog-api",
227-
"hash": "e8148895fd275e3199bbef36ef72e926"
227+
"hash": "93c4a41c498aeb97c739e4d701e667e4"
228228
}
229229
##DOCS-SOURCER-END -->

docs/reference/modules/terraform-aws-server/require-instance-metadata-service-version/require-instance-metadata-service-version.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="Module Server" version="1.0.1" lastModifiedVersion="0.13.6"/>
12+
<VersionBadge repoTitle="Module Server" version="1.0.2" lastModifiedVersion="0.13.6"/>
1313

1414
# Require Instance Metadata Service version script
1515

16-
<a href="https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.1/modules/require-instance-metadata-service-version" 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-server/tree/v1.0.2/modules/require-instance-metadata-service-version" 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-server/releases/tag/v0.13.6" className="link-button" title="Release notes for only versions which impacted this module.">Release Notes</a>
1919

@@ -24,7 +24,7 @@ This folder contains a script (`require-instance-metadata-service-version`) you
2424

2525
Learn more at [the official AWS EC2 Instance Metadata Service documentation](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-metadata.html).
2626

27-
Check out the [route53-helpers example](https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.1/examples/route53-helpers) for how to use these scripts with Packer and Terraform.
27+
Check out the [route53-helpers example](https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.2/examples/route53-helpers) for how to use these scripts with Packer and Terraform.
2828

2929
## Installing bash-commons
3030

@@ -49,7 +49,7 @@ The `require-instance-metadata-service-version` script has the following prerequ
4949
1. It must be run on an EC2 instance
5050
2. It requires that `bash-commons` version `v0.1.8` or newer is installed on the EC2 Instance. See instructions above.
5151
3. The EC2 instance must have an IAM role with permissions to modify the Instance Metadata service's options. See the
52-
[route53-helpers example](https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.1/examples/route53-helpers)) for a reference implementation.
52+
[route53-helpers example](https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.2/examples/route53-helpers)) for a reference implementation.
5353
4. The EC2 instance must have the AWS CLI (version 2.2.37 or higher), unzip and jq installed.
5454

5555
Run the `require-instance-metadata-service-version` script in the User Data of your EC2 instances, prior to any calls to the Instance Metadata Service to configure if you want `2.0` credentials to be `required` or `optional`.
@@ -97,11 +97,11 @@ Setting Instance Metadata Service version 2 state to optional
9797
<!-- ##DOCS-SOURCER-START
9898
{
9999
"originalSources": [
100-
"https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.1/modules/require-instance-metadata-service-version/readme.md",
101-
"https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.1/modules/require-instance-metadata-service-version/variables.tf",
102-
"https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.1/modules/require-instance-metadata-service-version/outputs.tf"
100+
"https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.2/modules/require-instance-metadata-service-version/readme.md",
101+
"https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.2/modules/require-instance-metadata-service-version/variables.tf",
102+
"https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.2/modules/require-instance-metadata-service-version/outputs.tf"
103103
],
104104
"sourcePlugin": "module-catalog-api",
105-
"hash": "7e5c0a6e4f4129ccef4ff92c3d5212d2"
105+
"hash": "74355cac113bd1f47f782b1e2c4d53a9"
106106
}
107107
##DOCS-SOURCER-END -->

0 commit comments

Comments
 (0)