juntekim.com/terraform/modules/s3_iam_policy/outputs.tf
2026-02-17 23:28:47 +00:00

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
}