feat: portfolio terraform
This commit is contained in:
16
terraform/outputs.tf
Normal file
16
terraform/outputs.tf
Normal file
@@ -0,0 +1,16 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user