Skip to content

Commit

Permalink
output caa role from top level module (#45)
Browse files Browse the repository at this point in the history
* output caa role from top level module

* bump aws provider version
  • Loading branch information
nirfirefly authored Feb 22, 2024
1 parent 0f680f7 commit e6bf0ba
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
output "firefly_integration_role_arn" {
value = length(module.firefly_aws_integration) == 1 ? module.firefly_aws_integration[0].firefly_integration_role_arn: null
}
output "firefly_integration_role_name" {
value = length(module.firefly_aws_integration) == 1 ? module.firefly_aws_integration[0].firefly_integration_role_name: null
}
2 changes: 1 addition & 1 deletion terraform.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 4.12.1, <= 5.33.0"
version = ">= 4.12.1, <= 5.38.0"
}

terracurl = {
Expand Down

0 comments on commit e6bf0ba

Please sign in to comment.