diff --git a/.spacelift/config.yml b/.spacelift/config.yml
index 3d20079..4bb8788 100644
--- a/.spacelift/config.yml
+++ b/.spacelift/config.yml
@@ -1,5 +1,5 @@
version: 1
-module_version: 2.6.3
+module_version: 2.6.4
tests:
- name: AMD64-based workerpool
project_root: examples/amd64
diff --git a/README.md b/README.md
index 25bb8c8..4f63031 100644
--- a/README.md
+++ b/README.md
@@ -68,21 +68,21 @@ $ make docs
| Name | Version |
|------|---------|
-| [aws](#requirement\_aws) | >= 4.0 |
+| [aws](#requirement\_aws) | >= 5.55.0 |
## Providers
| Name | Version |
|------|---------|
| [archive](#provider\_archive) | n/a |
-| [aws](#provider\_aws) | >= 4.0 |
+| [aws](#provider\_aws) | >= 5.55.0 |
| [null](#provider\_null) | n/a |
## Modules
| Name | Source | Version |
|------|--------|---------|
-| [asg](#module\_asg) | terraform-aws-modules/autoscaling/aws | ~> 6.0 |
+| [asg](#module\_asg) | terraform-aws-modules/autoscaling/aws | ~> 8.0 |
## Resources
diff --git a/asg.tf b/asg.tf
index 68cd27c..a80ba80 100644
--- a/asg.tf
+++ b/asg.tf
@@ -78,7 +78,7 @@ poweroff
module "asg" {
source = "terraform-aws-modules/autoscaling/aws"
- version = "~> 6.0"
+ version = "~> 8.0"
name = local.base_name
diff --git a/examples/amd64/main.tf b/examples/amd64/main.tf
index d843090..5e467c5 100644
--- a/examples/amd64/main.tf
+++ b/examples/amd64/main.tf
@@ -2,7 +2,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
- version = "<5.0"
+ version = "< 6.0"
}
random = { source = "hashicorp/random" }
diff --git a/examples/arm64/main.tf b/examples/arm64/main.tf
index d1b3a8d..f4dd876 100644
--- a/examples/arm64/main.tf
+++ b/examples/arm64/main.tf
@@ -2,7 +2,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
- version = "<5.0"
+ version = "< 6.0"
}
random = { source = "hashicorp/random" }
diff --git a/examples/custom-iam-role/main.tf b/examples/custom-iam-role/main.tf
index 93e41e4..ae3b1f2 100644
--- a/examples/custom-iam-role/main.tf
+++ b/examples/custom-iam-role/main.tf
@@ -2,7 +2,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
- version = "<5.0"
+ version = "< 6.0"
}
}
}
diff --git a/providers.tf b/providers.tf
index 9bcc73a..cd98b95 100644
--- a/providers.tf
+++ b/providers.tf
@@ -2,7 +2,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
- version = ">= 4.0"
+ version = ">= 5.55.0"
}
}
}