outputs.tf 325 B

1234567891011121314
  1. output "s3_bucket_arn" {
  2. description = "The ARN of the bucket"
  3. value = aws_s3_bucket.this.arn
  4. }
  5. output "s3_bucket_name" {
  6. description = "The name of the bucket"
  7. value = aws_s3_bucket.this.bucket
  8. }
  9. output "kms_key_id" {
  10. description = "KMS key used by cloudtrail"
  11. value = aws_kms_key.this.arn
  12. }