You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/enos/modules/aws_bucket/outputs.tf

13 lines
337 B

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: BUSL-1.1
output "bucket_name" {
value = aws_s3_bucket.default.id
description = "The name of the S3 bucket created by this module."
}
output "bucket_arn" {
value = aws_s3_bucket.default.arn
description = "The ARN of the S3 bucket created by this module."
}