File tree 4 files changed +6
-3
lines changed
examples/multi-runner/templates/runner-configs
4 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,6 @@ runner_config:
19
19
delay_webhook_event : 0
20
20
scale_down_schedule_expression : cron(* * * * ? *)
21
21
runner_hook_job_started : |
22
- echo "Running pre job hook as \ $(whoami)"
22
+ echo "Running pre job hook as $(whoami)"
23
23
runner_hook_job_completed : |
24
- echo "Running post job hook as \ $(whoami)"
24
+ echo "Running post job hook as $(whoami)"
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ module "termination_warning_watcher" {
19
19
resource "aws_cloudwatch_event_rule" "spot_instance_termination_warning" {
20
20
name = " ${ var . config . prefix != null ? format (" %s-" , var. config . prefix ) : " " } spot-notify"
21
21
description = " Spot Instance Termination Warning"
22
+ tags = local. config . tags
22
23
23
24
event_pattern = << EOF
24
25
{
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ module "termination_handler" {
19
19
resource "aws_cloudwatch_event_rule" "spot_instance_termination" {
20
20
name = " ${ var . config . prefix != null ? format (" %s-" , var. config . prefix ) : " " } spot-termination"
21
21
description = " Spot Instance Termination (BidEventicedEvent)"
22
+ tags = local. config . tags
22
23
23
24
event_pattern = << EOF
24
25
{
Original file line number Diff line number Diff line change 1
1
resource "aws_cloudwatch_event_rule" "workflow_job" {
2
2
name = " ${ var . config . prefix } -workflow_job"
3
- description = " Workflow job event ruule for job queued."
3
+ description = " Workflow job event rule for job queued."
4
4
event_bus_name = aws_cloudwatch_event_bus. main . name
5
+ tags = var. config . tags
5
6
6
7
event_pattern = << EOF
7
8
{
You can’t perform that action at this time.
0 commit comments