forked from stelsemeyer/aws-mwaa-terraform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
51 lines (41 loc) · 1.24 KB
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# MWAA output variables
output "vpc_id" {
value = aws_vpc.vpc.id
description = "ID of the VPC."
}
output "public_subnets_ids" {
value = aws_subnet.public_subnets.*.id
description = "List with the IDs of the public subnets."
}
output "private_subnets_ids" {
value = aws_subnet.private_subnets.*.id
description = "List with the IDs of the private subnets."
}
output "s3_bucket_id" {
value = aws_s3_bucket.s3_bucket.id
description = "ID of S3 bucket."
}
output "mwaa_environment_arn" {
value = aws_mwaa_environment.mwaa_environment.arn
description = "ARN of MWAA environment."
}
output "mwaa_webserver_url" {
value = aws_mwaa_environment.mwaa_environment.webserver_url
description = "Webserver URL of MWAA environment."
}
output "region" {
value = var.region
description = "The deployment region."
}
output "s3_bucket_name" {
value = aws_s3_bucket.s3_bucket.bucket
description = "Name of S3 bucket."
}
output "access_key_id" {
value = aws_iam_access_key.dags.id
description = "Access Key ID to push data to the dags bucket."
}
output "secret_access_key" {
value = aws_iam_access_key.dags.secret
description = "Secret Access Key to push data to the dags bucket."
}