Skip to content

Commit

Permalink
Update Terraform cn-terraform/ecs-fargate/aws to v2.0.47 (#46)
Browse files Browse the repository at this point in the history
* Update Terraform cn-terraform/ecs-fargate/aws to v2.0.47

* Update variables

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Julian Nonino <[email protected]>
  • Loading branch information
renovate[bot] and jnonino authored Nov 7, 2022
1 parent e48f559 commit b97d872
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
3 changes: 2 additions & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ module "aws_cw_logs" {
#------------------------------------------------------------------------------
module "ecs_fargate" {
source = "cn-terraform/ecs-fargate/aws"
version = "2.0.46"
version = "2.0.47"
# source = "../terraform-aws-ecs-fargate"

name_prefix = "${var.name_prefix}-nexus"
Expand All @@ -90,6 +90,7 @@ module "ecs_fargate" {
mount_points = var.mount_points

# Application Load Balancer
custom_lb_arn = var.custom_lb_arn
lb_http_ports = var.lb_http_ports
lb_https_ports = var.lb_https_ports
lb_enable_cross_zone_load_balancing = var.lb_enable_cross_zone_load_balancing
Expand Down
6 changes: 6 additions & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,12 @@ variable "log_group_retention_in_days" {
#------------------------------------------------------------------------------
# APPLICATION LOAD BALANCER LOGS
#------------------------------------------------------------------------------
variable "custom_lb_arn" {
description = "ARN of the Load Balancer to use in the ECS service. If provided, this module will not create a load balancer and will use the one provided in this variable"
type = string
default = null
}

variable "enable_s3_logs" {
description = "(Optional) If true, all resources to send LB logs to S3 will be created"
type = bool
Expand Down

0 comments on commit b97d872

Please sign in to comment.