diff --git a/Makefile b/Makefile index 79d6de2..923d31a 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ TF_MODULES = $(sort $(dir $(wildcard $(CURRENT_DIR)modules/*/))) # ------------------------------------------------------------------------------------------------- # Container versions # ------------------------------------------------------------------------------------------------- -TF_VERSION = 1.0.11 +TF_VERSION = 1.3.10 TFDOCS_VERSION = 0.16.0-0.34 FL_VERSION = latest-0.8 JL_VERSION = 1.6.0-0.14 diff --git a/README.md b/README.md index 78a121c..fe64c36 100644 --- a/README.md +++ b/README.md @@ -251,7 +251,7 @@ Default: `true` ### [additional\_settings](#input\_additional\_settings) -Description: Additional Elastic Beanstalk setttings. For full list of options, see https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/command-options-general.html +Description: Additional Elastic Beanstalk settings. For full list of options, see https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/command-options-general.html Type: diff --git a/main.tf b/main.tf index ce5075f..6ab17b2 100644 --- a/main.tf +++ b/main.tf @@ -1,7 +1,7 @@ module "elastic_beanstalk_application" { source = "cloudposse/elastic-beanstalk-application/aws" # Cloud Posse recommends pinning every module to a specific version - version = "0.11.1" + version = "0.12.0" name = var.application_name description = "Test Elastic Beanstalk application" @@ -11,7 +11,7 @@ module "elastic_beanstalk_application" { module "elastic_beanstalk_environment" { source = "cloudposse/elastic-beanstalk-environment/aws" - version = "0.51.0" + version = "0.52.0" depends_on = [ aws_elastic_beanstalk_application_version.default, @@ -129,7 +129,7 @@ data "aws_route53_zone" "selected" { } module "acm" { - source = "github.com/terraform-aws-modules/terraform-aws-acm.git?ref=v3.2.0" + source = "github.com/terraform-aws-modules/terraform-aws-acm.git?ref=v5.1.1" validate_certificate = false create_certificate = var.domain_name != "" ? true : false diff --git a/variables.tf b/variables.tf index fc25d52..07a42d9 100644 --- a/variables.tf +++ b/variables.tf @@ -159,7 +159,7 @@ variable "additional_settings" { })) default = [] - description = "Additional Elastic Beanstalk setttings. For full list of options, see https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/command-options-general.html" + description = "Additional Elastic Beanstalk settings. For full list of options, see https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/command-options-general.html" } variable "managed_actions_enabled" {