Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/npm_and_yarn/example/semver-6.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomdango committed Nov 30, 2023
2 parents cd87abf + 2570005 commit 7d49e16
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 26 deletions.
34 changes: 17 additions & 17 deletions example/terraform/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion example/terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 4.0"
version = "~> 5.0"
}
}

Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 4.0"
version = ">= 4.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion modules/cloudfront-logs/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 4.0"
version = ">= 4.0"
}

archive = {
Expand Down
2 changes: 1 addition & 1 deletion modules/opennext-assets/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 4.0"
version = ">= 4.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion modules/opennext-cloudfront/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 4.0"
version = ">= 4.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion modules/opennext-cloudfront/waf.tf
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ resource "aws_wafv2_web_acl" "cloudfront_waf" {
}

resource "aws_wafv2_web_acl_logging_configuration" "waf_logging" {
count = var.waf_logging_configuration == null || try(aws_wafv2_web_acl.cloudfront_waf[0], null) == null ? 0 : 1
count = var.waf_logging_configuration == null || var.custom_waf != null ? 0 : 1

resource_arn = aws_wafv2_web_acl.cloudfront_waf[0].arn
log_destination_configs = var.waf_logging_configuration.log_destination_configs
Expand Down
4 changes: 2 additions & 2 deletions modules/opennext-lambda/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 4.0"
version = ">= 4.0"
}
archive = {
source = "hashicorp/archive"
version = "~> 2.4.0"
version = ">= 2.4.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion modules/opennext-revalidation-queue/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 4.0"
version = ">= 4.0"
}
}
}
Expand Down

0 comments on commit 7d49e16

Please sign in to comment.