Skip to content
Merged
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
3 changes: 3 additions & 0 deletions modules/collections/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ module "elb_module" {
remove_on_delete_stack = true
}
aws_resource_tags = var.aws_resource_tags
aws_cli_profile = var.aws_cli_profile
}

#CLB module
Expand Down Expand Up @@ -184,6 +185,7 @@ module "classic_lb_module" {
remove_on_delete_stack = true
}
aws_resource_tags = var.aws_resource_tags
aws_cli_profile = var.aws_cli_profile
}

module "cloudwatch_custom_metrics_source_module" {
Expand Down Expand Up @@ -346,4 +348,5 @@ module "kinesis_firehose_for_logs_module" {
tags_filter = var.auto_enable_logs_subscription_options.tags_filter
}
aws_resource_tags = var.aws_resource_tags
aws_cli_profile = var.aws_cli_profile
}
6 changes: 6 additions & 0 deletions modules/collections/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -540,4 +540,10 @@ variable "aws_resource_tags" {
description = "Map of tags to apply to all AWS resources provisioned through the Source Module"
type = map(string)
default = {}
}

variable "aws_cli_profile" {
description = "AWS profile to use for Lambda invocation. If empty, uses the default credential chain."
type = string
default = ""
}
Loading