Skip to content

Commit

Permalink
Update var
Browse files Browse the repository at this point in the history
  • Loading branch information
gillettmoj committed Oct 28, 2024
1 parent 41cbe2d commit 5de9f9e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion terraform/environment/region.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ module "eu_west_1" {
autoscaling = local.environment.autoscaling
associate_alb_with_waf_web_acl_enabled = local.environment.associate_alb_with_waf_web_acl_enabled
capacity_provider = local.capacity_provider
cloudwatch_application_insights_enabled = var.environments.cloudwatch_application_insights_enabled
cloudwatch_application_insights_enabled = var.cloudwatch_application_insights_enabled
container_version = var.container_version
cookie_expires_use = local.environment.cookie_expires_use
cookie_expires_view = local.environment.cookie_expires_view
Expand Down
6 changes: 5 additions & 1 deletion terraform/environment/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ variable "container_version" {
description = "The version of the ECS container images to deploy"
}

variable "cloudwatch_application_insights_enabled" {
type = bool
description = "Enable CloudWatch Application Insights"
}

variable "admin_container_version" {
type = string
default = "latest"
Expand Down Expand Up @@ -46,7 +51,6 @@ variable "environments" {
})
cookie_expires_use = number
cookie_expires_view = number
cloudwatch_application_insights_enabled = bool
create_dashboard = bool
create_onelogin_dashboard = bool
google_analytics_id_use = string
Expand Down

0 comments on commit 5de9f9e

Please sign in to comment.