Skip to content

Commit

Permalink
Update sub-modules (#10)
Browse files Browse the repository at this point in the history
* Update modules

* Update TF-checks
  • Loading branch information
snovikov authored Jan 21, 2025
1 parent 2b97c1a commit 8f1abbc
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ Default: `true`

### <a name="input_additional_settings"></a> [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:

Expand Down
6 changes: 3 additions & 3 deletions main.tf
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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,
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down

0 comments on commit 8f1abbc

Please sign in to comment.