File tree Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Expand file tree Collapse file tree 3 files changed +4
-1
lines changed 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