Skip to content

Commit

Permalink
remove try functions
Browse files Browse the repository at this point in the history
  • Loading branch information
magreenbaum committed Sep 5, 2024
1 parent 61235f9 commit a1d8757
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ resource "aws_cloudwatch_event_bus" "this" {
count = var.create && var.create_bus ? 1 : 0

name = var.bus_name
event_source_name = try(var.event_source_name, null)
kms_key_identifier = try(var.kms_key_identifier, null)
event_source_name = var.event_source_name
kms_key_identifier = var.kms_key_identifier

tags = var.tags
}
Expand Down

0 comments on commit a1d8757

Please sign in to comment.