17 lines
455 B
HCL
17 lines
455 B
HCL
output "access_region" {
|
|
value = aws_s3_bucket.portfolio_bucket.region
|
|
description = "This is the region of the bucket."
|
|
}
|
|
|
|
output "access_id" {
|
|
value = aws_iam_access_key.portfolio_bucket_key.id
|
|
description = "This is the access ID to modify the bucket."
|
|
sensitive = true
|
|
}
|
|
|
|
output "access_secret" {
|
|
value = aws_iam_access_key.portfolio_bucket_key.secret
|
|
description = "This is the access secret to modify the bucket."
|
|
sensitive = true
|
|
}
|