# Outputs ====================================================================== output "resource_share_ids" { description = "Map of resource share keys to RAM resource share IDs." value = { for k, v in aws_ram_resource_share.this : k => v.id } } output "resource_share_arns" { description = "Map of resource share keys to RAM resource share ARNs." value = { for k, v in aws_ram_resource_share.this : k => v.arn } } output "resource_associations" { description = "Map of resource association keys to the associated resource ARN." value = { for k, v in aws_ram_resource_association.this : k => v.resource_arn } } output "principal_associations" { description = "Map of principal association keys to the associated principal." value = { for k, v in aws_ram_principal_association.this : k => v.principal } }