forked from terraform-aws-modules/terraform-aws-eventbridge
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Simplified outputs (no this_) (terraform-aws-modules#6)
- Loading branch information
1 parent
057fb24
commit eb8051c
Showing
10 changed files
with
36 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
output "eventbridge_bus_arn" { | ||
description = "The EventBridge Bus ARN" | ||
value = module.eventbridge.this_eventbridge_bus_arn | ||
value = module.eventbridge.eventbridge_bus_arn | ||
} | ||
|
||
output "eventbridge_rule_ids" { | ||
description = "The EventBridge Rule IDs" | ||
value = module.eventbridge.this_eventbridge_rule_ids | ||
value = module.eventbridge.eventbridge_rule_ids | ||
} | ||
|
||
output "eventbridge_rule_arns" { | ||
description = "The EventBridge Rule ARNs" | ||
value = module.eventbridge.this_eventbridge_rule_arns | ||
value = module.eventbridge.eventbridge_rule_arns | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
output "eventbridge_bus_arn" { | ||
description = "The EventBridge Bus ARN" | ||
value = module.eventbridge.this_eventbridge_bus_arn | ||
value = module.eventbridge.eventbridge_bus_arn | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
output "eventbridge_bus_arn" { | ||
description = "The EventBridge Bus ARN" | ||
value = module.eventbridge.this_eventbridge_bus_arn | ||
value = module.eventbridge.eventbridge_bus_arn | ||
} | ||
|
||
output "eventbridge_archive_arns" { | ||
description = "The EventBridge Archive ARNs" | ||
value = module.eventbridge.this_eventbridge_archive_arns | ||
value = module.eventbridge.eventbridge_archive_arns | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
output "eventbridge_bus_arn" { | ||
description = "The EventBridge Bus ARN" | ||
value = module.eventbridge.this_eventbridge_bus_arn | ||
value = module.eventbridge.eventbridge_bus_arn | ||
} | ||
|
||
output "this_eventbridge_permission_ids" { | ||
output "eventbridge_permission_ids" { | ||
description = "The EventBridge Permissions" | ||
value = module.eventbridge.this_eventbridge_permission_ids | ||
value = module.eventbridge.eventbridge_permission_ids | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters