diff --git a/examples/multi-runner/templates/runner-configs/linux-arm64.yaml b/examples/multi-runner/templates/runner-configs/linux-arm64.yaml index 34817cc36c..42902ee0dd 100644 --- a/examples/multi-runner/templates/runner-configs/linux-arm64.yaml +++ b/examples/multi-runner/templates/runner-configs/linux-arm64.yaml @@ -19,6 +19,6 @@ runner_config: delay_webhook_event: 0 scale_down_schedule_expression: cron(* * * * ? *) runner_hook_job_started: | - echo "Running pre job hook as \$(whoami)" + echo "Running pre job hook as $(whoami)" runner_hook_job_completed: | - echo "Running post job hook as \$(whoami)" + echo "Running post job hook as $(whoami)" diff --git a/modules/termination-watcher/notification/main.tf b/modules/termination-watcher/notification/main.tf index e8eef31874..82b961bc3c 100644 --- a/modules/termination-watcher/notification/main.tf +++ b/modules/termination-watcher/notification/main.tf @@ -19,6 +19,7 @@ module "termination_warning_watcher" { resource "aws_cloudwatch_event_rule" "spot_instance_termination_warning" { name = "${var.config.prefix != null ? format("%s-", var.config.prefix) : ""}spot-notify" description = "Spot Instance Termination Warning" + tags = local.config.tags event_pattern = <