Files
doczyai-pipelines/devops-pipeline/other-resources/outputs.tf
T
2024-06-12 15:27:45 +02:00

25 lines
532 B
Terraform

# S3 bucket name
output "devops_s3_bucket_name" {
value = aws_s3_bucket.devops.id
}
output "raw_data_ingestion_bucket_name" {
value = aws_s3_bucket.raw_data_ingestion.id
}
output "mwaa_resources_bucket_name" {
value = aws_s3_bucket.mwaa_resources.id
}
# IAM Role ARN
output "snowflake_integration_role_arn" {
value = aws_iam_role.snowflake_integration_role.arn
}
output "cross_account_role_arn" {
value = aws_iam_role.cross_account_role[*].id
}
output "mwaa_exec_role_arn" {
value = aws_iam_role.mwaa_exec_role.id
}