Skip to content

feat!: Upgrade AWS provider and min required Terraform version to 6.0 and 1.5.7 respectively #585

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 21 commits into from
Aug 13, 2025
Merged
Show file tree
Hide file tree
Changes from 16 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
426a827
feat: Remove `iam-eks-role` module
bryantbiggs Aug 7, 2025
bccf109
feat: Add bulk changes from `feat/upgrade` branch
bryantbiggs Aug 7, 2025
e3eefb9
feat: Bump min supported versions of Terraform and AWS provider
bryantbiggs Aug 7, 2025
2d9d213
chore: Update naming use and remove role self-assume
bryantbiggs Aug 7, 2025
e528d88
fix: Correct IAM policy statement variables
bryantbiggs Aug 8, 2025
dcdbae4
feat: Merge `iam-role-oidc` and `iam-role-saml` into `iam-role`
bryantbiggs Aug 8, 2025
a4ef1f5
fix: Update IRSA module to align with upstream changes
bryantbiggs Aug 8, 2025
0e979ff
feat: Remove permission variable defaults, add updates from upstream …
bryantbiggs Aug 8, 2025
ad8ddbc
fix: Remove legacy IRSAv2 artifact
bryantbiggs Aug 8, 2025
f4a5642
feat: Update upgrade guide with diagram mapping old to new modules
bryantbiggs Aug 8, 2025
bb2a465
chore: Add variable/output changes to upgrade guide
bryantbiggs Aug 11, 2025
a43eb37
feat: Add inline policy support to IRSA sub-module
bryantbiggs Aug 12, 2025
858e08d
docs: Capture before/after in upgrade guide from testing
bryantbiggs Aug 12, 2025
d9ec0af
fix: Correct lint errors
bryantbiggs Aug 13, 2025
5e60ce7
feat: Faster CI; remove unecessary files due to disk space (but faster)
bryantbiggs Aug 13, 2025
9b381af
feat: Last minute variable name changes for improved ergonomics
bryantbiggs Aug 13, 2025
4502dac
Apply suggestions from code review
bryantbiggs Aug 13, 2025
0bbb9f2
fix: Re-add `iam-policy` module
bryantbiggs Aug 13, 2025
57d5136
fix: Update migration commands to remove
bryantbiggs Aug 13, 2025
fbbfefb
fix: Correct example provider versions
bryantbiggs Aug 13, 2025
49e7d67
fix: Update migration commands
bryantbiggs Aug 13, 2025
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
35 changes: 4 additions & 31 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,8 @@ jobs:
matrix:
directory: ${{ fromJson(needs.collectInputs.outputs.directories) }}
steps:
# https://github.com/orgs/community/discussions/25678#discussioncomment-5242449
- name: Delete huge unnecessary tools folder
run: |
rm -rf /opt/hostedtoolcache/CodeQL
rm -rf /opt/hostedtoolcache/Java_Temurin-Hotspot_jdk
rm -rf /opt/hostedtoolcache/Ruby
rm -rf /opt/hostedtoolcache/go
- name: Delete unnecessary files
uses: xd009642/[email protected]

- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -72,30 +67,8 @@ jobs:
runs-on: ubuntu-latest
needs: collectInputs
steps:
# https://github.com/orgs/community/discussions/25678#discussioncomment-5242449
- name: Delete huge unnecessary tools folder
run: |
df -h
rm -rf /opt/hostedtoolcache/CodeQL
rm -rf /opt/hostedtoolcache/Java_Temurin-Hotspot_jdk
rm -rf /opt/hostedtoolcache/Ruby
rm -rf /opt/hostedtoolcache/go
# And a little bit more
sudo apt-get -qq remove -y 'azure-.*'
sudo apt-get -qq remove -y 'cpp-.*'
sudo apt-get -qq remove -y 'dotnet-runtime-.*'
sudo apt-get -qq remove -y 'google-.*'
sudo apt-get -qq remove -y 'libclang-.*'
sudo apt-get -qq remove -y 'libllvm.*'
sudo apt-get -qq remove -y 'llvm-.*'
sudo apt-get -qq remove -y 'mysql-.*'
sudo apt-get -qq remove -y 'postgresql-.*'
sudo apt-get -qq remove -y 'php.*'
sudo apt-get -qq remove -y 'temurin-.*'
sudo apt-get -qq remove -y kubectl firefox mono-devel
sudo apt-get -qq autoremove -y
sudo apt-get -qq clean
df -h
- name: Delete unnecessary files
uses: xd009642/[email protected]

- name: Checkout
uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/antonbabenko/pre-commit-terraform
rev: v1.99.4
rev: v1.100.0
hooks:
- id: terraform_fmt
- id: terraform_wrapper_module_for_each
Expand All @@ -24,7 +24,7 @@ repos:
- '--args=--only=terraform_workspace_remote'
- id: terraform_validate
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
rev: v6.0.0
hooks:
- id: check-merge-conflict
- id: end-of-file-fixer
Expand Down
Loading