Skip to content

Commit ac1ab8c

Browse files
maratinvitaenpalm
andauthored
fix(tagging): Add tags to supported resources (#4850)
Add default tags to `aws_lambda_event_source_mapping` and `aws_ssm_parameter` resources. Co-authored-by: Niek Palm <npalm@users.noreply.github.com>
1 parent 7713a56 commit ac1ab8c

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

modules/runners/scale-up.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ resource "aws_lambda_event_source_mapping" "scale_up" {
9090
event_source_arn = var.sqs_build_queue.arn
9191
function_name = aws_lambda_function.scale_up.arn
9292
batch_size = 1
93+
tags = var.tags
9394
}
9495

9596
resource "aws_lambda_permission" "scale_runners_lambda" {

modules/webhook/webhook.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ resource "aws_ssm_parameter" "runner_matcher_config" {
1111
type = "String"
1212
value = jsonencode(local.runner_matcher_config_sorted)
1313
tier = var.matcher_config_parameter_store_tier
14+
tags = var.tags
1415
}
1516

1617
module "direct" {

0 commit comments

Comments
 (0)