output "bucket_name" { description = "Bucket name." value = aws_s3_bucket.this.id } output "bucket_arn" { description = "Bucket ARN." value = aws_s3_bucket.this.arn } output "bucket_regional_domain_name" { description = "Regional endpoint. Presigned URLs should use this rather than the global one, so a request does not take a redirect." value = aws_s3_bucket.this.bucket_regional_domain_name } output "control_plane_policy_arn" { description = "ARN of the policy the control plane's role carries; the env root attaches it. Null when create_control_plane_policy is false." value = one(aws_iam_policy.control_plane[*].arn) }