-
Notifications
You must be signed in to change notification settings - Fork 23
/
outputs.tf
29 lines (24 loc) · 897 Bytes
/
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
output "mwaa_arn" {
value = aws_mwaa_environment.this.arn
description = "The arn of the created MWAA environment."
}
output "mwaa_execution_role_arn" {
value = aws_mwaa_environment.this.execution_role_arn
description = "The IAM Role arn for MWAA Execution Role."
}
output "mwaa_service_role_arn" {
value = aws_mwaa_environment.this.execution_role_arn
description = "The Service Role arn for MWAA environment."
}
output "mwaa_nat_gateway_public_ips" {
value = aws_nat_gateway.this[*].public_ip
description = "List of the ips of the nat gateways created by this module."
}
output "mwaa_webserver_url" {
value = aws_mwaa_environment.this.webserver_url
description = "The webserver URL of the MWAA Environment."
}
output "mwaa_security_group_id" {
value = aws_security_group.this.id
description = "The security group id of the MWAA Environment."
}