# outputs ===================================================================== output "tags" { description = "Merged standard tag map combining environment, project, cost center, region, additional_tags, and tags" value = local.tags } output "name_prefix" { description = "Standard resource name prefix derived as -" value = local.name_prefix } output "account_id" { description = "AWS account ID of the caller" value = data.aws_caller_identity.current.account_id } output "region" { description = "Resolved AWS region (var.region if set, otherwise the current provider region)" value = local.region } output "partition" { description = "AWS partition (e.g. aws, aws-cn, aws-us-gov)" value = data.aws_partition.current.partition }