Skip to content

Commit a9682ef

Browse files
committed
Merge branch 'main' into ebs-volume-tags-79
2 parents f777cab + 851214c commit a9682ef

31 files changed

+982
-788
lines changed

.circleci/gpg.private.enc

0 Bytes
Binary file not shown.

.envrc

+8-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,11 @@
33
PROJECT_DIR="$(pwd)"
44

55
PATH_add "${PROJECT_DIR}"
6-
PATH_add "${PROJECT_DIR}"/vendor/terraform/bin
6+
PATH_add "${PROJECT_DIR}"/vendor/**/bin
7+
8+
if has asdf; then
9+
asdf install
10+
fi
11+
12+
layout ruby
13+
layout node
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ build/
1414
dist/
1515
.bundle
1616
.rakeTasks
17+
.direnv
1718

1819
# OS
1920
.DS_Store

.tool-versions

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ruby 3.1.1

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,16 @@ BACKWARDS INCOMPATIBILITIES / NOTES:
88
module since, in the case of autoscaling or manual scaling, the value may have
99
changed between `apply`s.
1010

11+
IMPROVEMENTS:
12+
13+
* A `cluster_instance_metadata_options` variable has been added which mirrors
14+
the [metadata_options](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/launch_template#metadata-options)
15+
exposed on the `aws_launch_template` resource. Among other things, this allows
16+
users of this module to require that IMDSv2 be used by containers in the
17+
cluster. By default, IMDSv2 is not required in this version of the module but
18+
a future major release of the module may enforce IMDSv2 usage.
19+
20+
1121
## 6.0.0 (February 22th 2023)
1222

1323
BACKWARDS INCOMPATIBILITIES / NOTES:

CODE_OF_CONDUCT.md

+7-6
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ Project maintainers are responsible for clarifying the standards of acceptable
3737
behavior and are expected to take appropriate and fair corrective action in
3838
response to any instances of unacceptable behavior.
3939

40-
Project maintainers have the right and responsibility to remove, edit, or
41-
reject comments, commits, code, wiki edits, issues, and other contributions
42-
that are not aligned to this Code of Conduct, or to ban temporarily or
43-
permanently any contributor for other behaviors that they deem inappropriate,
44-
threatening, offensive, or harmful.
40+
Project maintainers have the right and responsibility to remove, edit, or reject
41+
comments, commits, code, wiki edits, issues, and other contributions that are
42+
not aligned to this Code of Conduct, or to ban temporarily or permanently any
43+
contributor for other behaviors that they deem inappropriate, threatening,
44+
offensive, or harmful.
4545

4646
## Scope
4747

@@ -72,4 +72,5 @@ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
7272
version 1.4, available at [http://contributor-covenant.org/version/1/4][version]
7373

7474
[homepage]: http://contributor-covenant.org
75-
[version]: http://contributor-covenant.org/version/1/4/
75+
76+
[version]: http://contributor-covenant.org/version/1/4/

0 commit comments

Comments
 (0)