Skip to content

Commit

Permalink
fix: Correct ARN and formatting of event bridge example
Browse files Browse the repository at this point in the history
  • Loading branch information
carldjohnston committed Nov 1, 2023
1 parent f04b93a commit 9066c5e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ module "appsync" {
}
eventbridge1 = {
type = "AMAZON_EVENTBRIDGE"
event_bus_arn = "aws:arn:events:us-west-1:135367859850:event-bus/eventbridge1"
type = "AMAZON_EVENTBRIDGE"
event_bus_arn = "arn:aws:events:us-west-1:135367859850:event-bus/eventbridge1"
}
rds1 = {
Expand Down
5 changes: 2 additions & 3 deletions examples/complete/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -224,9 +224,8 @@ module "appsync" {
}

eventbridge1 = {
type = "AMAZON_EVENTBRIDGE"

event_bus_arn = "aws:arn:events:us-west-1:135367859850:event-bus/eventbridge1"
type = "AMAZON_EVENTBRIDGE"
event_bus_arn = "arn:aws:events:us-west-1:135367859850:event-bus/eventbridge1"
}

rds1 = {
Expand Down

0 comments on commit 9066c5e

Please sign in to comment.