Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: justtrackio/terraform-aws-ecs-alb-service-task
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.5.0
Choose a base ref
...
head repository: justtrackio/terraform-aws-ecs-alb-service-task
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.6.0
Choose a head ref
  • 7 commits
  • 10 files changed
  • 23 contributors

Commits on Nov 11, 2024

  1. Copy the full SHA
    24ddd8d View commit details
  2. Update .tool-versions

    ztzxt committed Nov 11, 2024
    Copy the full SHA
    d36df39 View commit details
  3. Update .tflint.hcl

    ztzxt committed Nov 11, 2024
    Copy the full SHA
    6a06d9e View commit details

Commits on Dec 9, 2024

  1. Update .tflint.hcl

    ztzxt committed Dec 9, 2024
    Copy the full SHA
    d868a0f View commit details
  2. Update .tool-versions

    ztzxt committed Dec 9, 2024
    Copy the full SHA
    ef14fca View commit details

Commits on Feb 25, 2025

  1. feat: rebase cloudposse (#10)

    ## Description
    <!--- Describe your changes in detail -->
    
    ## Motivation and Context
    <!--- Why is this change required? What problem does it solve? -->
    <!--- If it fixes an open issue, please link to the issue here. -->
    
    ## Breaking Changes
    <!-- Does this break backwards compatibility with the current major
    version? -->
    <!-- If so, please provide an explanation why it is necessary. -->
    
    ## How Has This Been Tested?
    - [ ] I have updated at least one of the `examples/*` to demonstrate and
    validate my change(s)
    - [ ] I have tested and validated these changes using one or more of the
    provided `examples/*` projects
    <!--- Users should start with an existing example as its written, deploy
    it, then check their changes against it -->
    <!--- This will highlight breaking/disruptive changes. Once you have
    checked, deploy your changes to verify -->
    <!--- Please describe how you tested your changes -->
    - [ ] I have executed `pre-commit run -a` on my pull request
    <!--- Please see
    https://github.com/antonbabenko/pre-commit-terraform#how-to-install for
    how to install -->
    
    ---------
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: Joe Niland <joe@originalmind.com.au>
    Co-authored-by: cloudpossebot <11232728+cloudpossebot@users.noreply.github.com>
    Co-authored-by: Nuru <Nuru@users.noreply.github.com>
    Co-authored-by: Max Lobur <max_lobur@outlook.com>
    Co-authored-by: Yunchi Luo <mightyguava@gmail.com>
    Co-authored-by: Jeremy White <jeremy.white@cloudposse.com>
    Co-authored-by: Veronika Gnilitska <30597968+gberenice@users.noreply.github.com>
    Co-authored-by: Lukas Deutz <5903157+lagerfeuer@users.noreply.github.com>
    Co-authored-by: Kevin Mahoney <kevin@icecube.dog>
    Co-authored-by: Michael Manganiello <adamantike@users.noreply.github.com>
    Co-authored-by: Erik Osterman (CEO @ Cloud Posse) <erik@cloudposse.com>
    Co-authored-by: Cloud Posse Bot (CI/CD) <bot@cloudposse.com>
    Co-authored-by: max-lobur <max-lobur@users.noreply.github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: readme-action 📖 <actions@github.com>
    Co-authored-by: Alex Kaplan <awkaplan@users.noreply.github.com>
    Co-authored-by: Alex Kaplan <akaplan@akiliinteractive.com>
    Co-authored-by: RoseSecurity <72598486+RoseSecurity@users.noreply.github.com>
    Co-authored-by: Markiian Slipets <53615853+mslipets@users.noreply.github.com>
    Co-authored-by: Dmitrij Nikitenko <dmitrij@nikitenko.lv>
    Co-authored-by: Roman Kulaiev <kulayev.roman@gmail.com>
    22 people authored Feb 25, 2025
    Copy the full SHA
    7c9bf6c View commit details
  2. chore(release): 1.6.0 [skip ci]

    ## [1.6.0](v1.5.0...v1.6.0) (2025-02-25)
    
    ### Features
    
    * rebase cloudposse ([#10](#10)) ([7c9bf6c](7c9bf6c))
    semantic-release-bot committed Feb 25, 2025
    Copy the full SHA
    8c717ec View commit details
Showing with 455 additions and 66 deletions.
  1. +4 −4 .github/workflows/pre-commit.yml
  2. +2 −2 .tflint.hcl
  3. +2 −2 .tool-versions
  4. +7 −0 CHANGELOG.md
  5. +15 −4 README.md
  6. 0 docs/terraform.md
  7. +297 −35 main.tf
  8. +18 −13 outputs.tf
  9. +109 −5 variables.tf
  10. +1 −1 versions.tf
8 changes: 4 additions & 4 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@ jobs:

- name: Get root directories
id: dirs
uses: clowdhaus/terraform-composite-actions/directories@v1.11.0
uses: clowdhaus/terraform-composite-actions/directories@v1.11.1

preCommitMinVersions:
name: Min TF pre-commit
@@ -42,15 +42,15 @@ jobs:
- name: Pre-commit Terraform ${{ steps.minMax.outputs.minVersion }}
# Run only validate pre-commit check on min version supported
if: ${{ matrix.directory != '.' }}
uses: clowdhaus/terraform-composite-actions/pre-commit@v1.11.0
uses: clowdhaus/terraform-composite-actions/pre-commit@v1.11.1
with:
terraform-version: ${{ steps.minMax.outputs.minVersion }}
args: 'terraform_validate --color=always --show-diff-on-failure --files ${{ matrix.directory }}/*'

- name: Pre-commit Terraform ${{ steps.minMax.outputs.minVersion }}
# Run only validate pre-commit check on min version supported
if: ${{ matrix.directory == '.' }}
uses: clowdhaus/terraform-composite-actions/pre-commit@v1.11.0
uses: clowdhaus/terraform-composite-actions/pre-commit@v1.11.1
with:
terraform-version: ${{ steps.minMax.outputs.minVersion }}
args: 'terraform_validate --color=always --show-diff-on-failure --files $(ls *.tf)'
@@ -71,7 +71,7 @@ jobs:
uses: clowdhaus/terraform-min-max@v1.3.1

- name: Pre-commit Terraform ${{ steps.minMax.outputs.maxVersion }}
uses: clowdhaus/terraform-composite-actions/pre-commit@v1.11.0
uses: clowdhaus/terraform-composite-actions/pre-commit@v1.11.1
with:
terraform-version: ${{ steps.minMax.outputs.maxVersion }}
terraform-docs-version: ${{ env.TERRAFORM_DOCS_VERSION }}
4 changes: 2 additions & 2 deletions .tflint.hcl
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
plugin "aws" {
enabled = true
version = "0.33.0"
version = "0.36.0"
source = "github.com/terraform-linters/tflint-ruleset-aws"
}

plugin "terraform" {
enabled = true
version = "0.9.1"
version = "0.10.0"
source = "github.com/terraform-linters/tflint-ruleset-terraform"
}

4 changes: 2 additions & 2 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
terraform 1.9.7
terraform 1.10.1
terraform-docs 0.19.0
tflint 0.53.0
tflint 0.54.0
pre-commit 4.0.1
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [1.6.0](https://github.com/justtrackio/terraform-aws-ecs-alb-service-task/compare/v1.5.0...v1.6.0) (2025-02-25)


### Features

* rebase cloudposse ([#10](https://github.com/justtrackio/terraform-aws-ecs-alb-service-task/issues/10)) ([7c9bf6c](https://github.com/justtrackio/terraform-aws-ecs-alb-service-task/commit/7c9bf6cfbb6b70470371aa6500f674fc43c369c1))

## [1.5.0](https://github.com/justtrackio/terraform-aws-ecs-alb-service-task/compare/v1.4.0...v1.5.0) (2024-10-11)


Loading