Skip to content

Commit

Permalink
feat: version fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
d4kverma committed Aug 9, 2023
1 parent 8afa1d5 commit 71b27cd
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 10 deletions.
8 changes: 6 additions & 2 deletions _example/aws_managed_with_fargate/versions.tf
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
# Terraform version
terraform {
required_version = ">= 1.5.0"
required_version = ">= 1.5.4"

required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 5.5.0"
version = ">= 5.11.0"
}
cloudinit = {
source = "hashicorp/cloudinit"
version = ">= 2.0"
}
}
}
8 changes: 6 additions & 2 deletions _example/complete/versions.tf
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
# Terraform version
terraform {
required_version = ">= 1.5.0"
required_version = ">= 1.5.4"

required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 5.5.0"
version = ">= 5.11.0"
}
cloudinit = {
source = "hashicorp/cloudinit"
version = ">= 2.0"
}
}
}
5 changes: 2 additions & 3 deletions _example/self_managed/versions.tf
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
# Terraform version
terraform {
required_version = ">= 1.5.0"
required_version = ">= 1.5.4"

required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 5.5.0"
version = ">= 5.11.0"
}
cloudinit = {
source = "hashicorp/cloudinit"
Expand Down
6 changes: 3 additions & 3 deletions node_group/aws_managed/versions.tf
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
terraform {
required_version = ">= 0.14"
required_version = ">= 1.5.4"

required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 3.72"
version = ">= 5.11.0"
}
cloudinit = {
source = "hashicorp/cloudinit"
version = ">= 2.0"
}
}
}
}

0 comments on commit 71b27cd

Please sign in to comment.