Skip to content

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

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 26 commits into from
Jul 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
1efb36d
feat: Support `managed_draining` argument at `aws_ecs_capacity_provid…
ivan-sukhomlyn Feb 12, 2024
83b79cd
feat: Add support for multiple `service`s inside `service_connect_con…
saki-engineering Feb 12, 2024
c83dc9e
feat: Add support for custom metric queries in customized_metric_spec…
mattaltberg May 31, 2024
73fce3c
feat: Add support for service connect timeout settings (#212)
salscode Jul 24, 2024
472aad9
feat: Add support for EBS volumes (#205)
rlinstorres Jul 24, 2024
12b2f40
feat: Add support for service connect tls settings (#216)
kevouellet Aug 5, 2024
bd6cffa
fix: Propagate support for EBS volumes to the root module (#223)
montaguethomas Sep 3, 2024
6bc8138
fix: Correct logic for local `needs_infrastructure_iam_role` check (#…
montaguethomas Sep 3, 2024
664bb44
feat: Add support for restartPolicy (#231)
psantus Sep 16, 2024
75f3e7d
refactor: Initial pass at variable type definitions for service module'
bryantbiggs Nov 22, 2024
4f98ff1
refactor: Initial pass at variable type definitions for container def…
bryantbiggs Nov 23, 2024
5d7c29e
chore: Update variable name to tag_specifications (#251)
LuisValdesZero Jan 9, 2025
fb5bcc4
feat: Add support for availability zone rebalancing (#262) (#269)
kskmats Mar 21, 2025
27d93bc
chore: Raise MSV of AWS provider
bryantbiggs Apr 1, 2025
4a0b133
feat: Use policy for tasks role instead of inline policy
bryantbiggs Apr 1, 2025
b0914fe
feat: Add FIS param and remove inference accelerator from `service` m…
bryantbiggs Apr 1, 2025
ed296d1
feat: Update cluster variable definitions; drop `cluster_` prefix
bryantbiggs Apr 1, 2025
85a21cd
Merge branch 'master' into wip/v6
bryantbiggs Jun 27, 2025
b9fb67b
feat: Bump version requirements for AWS provider and Terraform to v6.…
bryantbiggs Jun 27, 2025
5a4a70f
feat: Update cluster configurations
bryantbiggs Jun 27, 2025
8240072
feat: Update container definition configurations
bryantbiggs Jun 27, 2025
0277e00
feat: Update service configurations
bryantbiggs Jun 27, 2025
e987f75
feat: The worlds longest variable definition
bryantbiggs Jul 1, 2025
f3c9f66
fix: Corrections
bryantbiggs Jul 2, 2025
1c55b83
chore: Update upgrade guide, add container definition example for tes…
bryantbiggs Jul 5, 2025
6d0ff2b
fix: Correct tflint ignore statemtns for camelCasing
bryantbiggs Jul 7, 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
2 changes: 1 addition & 1 deletion .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.0
rev: v1.99.4
hooks:
- id: terraform_fmt
- id: terraform_wrapper_module_for_each
Expand Down
76 changes: 36 additions & 40 deletions README.md

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -321,20 +321,20 @@ The default behavior of the container definition module is to create the CloudWa
# FluentBit sidecar is required for Firelens
fluent-bit = {
image = data.aws_ssm_parameter.fluentbit.value
firelens_configuration = {
firelensConfiguration = {
type = "fluentbit"
}
# ...
}

default = {
dependencies = [{
dependsOn = [{
containerName = "fluent-bit"
condition = "START"
}]

enable_cloudwatch_logging = false
log_configuration = {
logConfiguration = {
logDriver = "awsfirelens"
options = {
# ...
Expand Down
File renamed without changes.
Loading