mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
14 lines
338 B
HCL
14 lines
338 B
HCL
output "policy_arn" {
|
|
description = "ARN of the S3 IAM policy"
|
|
value = aws_iam_policy.s3_policy.arn
|
|
}
|
|
|
|
output "policy_name" {
|
|
description = "Name of the S3 IAM policy"
|
|
value = aws_iam_policy.s3_policy.name
|
|
}
|
|
|
|
output "policy_id" {
|
|
description = "ID of the S3 IAM policy"
|
|
value = aws_iam_policy.s3_policy.id
|
|
}
|