Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,7 @@ module "ecs_service" {
service = try(coalesce(var.service.name, var.name))
enable_cloudwatch_logging = var.atlantis.enable_cloudwatch_logging
create_cloudwatch_log_group = var.atlantis.create_cloudwatch_log_group
cloudwatch_log_group_name = var.atlantis.cloudwatch_log_group_name
cloudwatch_log_group_use_name_prefix = var.atlantis.cloudwatch_log_group_use_name_prefix
cloudwatch_log_group_retention_in_days = var.atlantis.cloudwatch_log_group_retention_in_days
cloudwatch_log_group_class = var.atlantis.cloudwatch_log_group_class
Expand Down
1 change: 1 addition & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ variable "atlantis" {
# CloudWatch Log Group
enable_cloudwatch_logging = optional(bool, true)
create_cloudwatch_log_group = optional(bool, true)
cloudwatch_log_group_name = optional(string)
cloudwatch_log_group_use_name_prefix = optional(bool, true)
cloudwatch_log_group_retention_in_days = optional(number, 14)
cloudwatch_log_group_class = optional(string)
Expand Down
Loading