Files
doczyai-pipelines/archive/devops-pipeline/other-resources/outputs.tf
T

25 lines
532 B
Terraform
Raw Normal View History

# S3 bucket name
2024-04-12 16:57:30 +05:30
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
2024-04-12 16:57:30 +05:30
}