generated from cloudposse/terraform-example-module
-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
outputs.tf
59 lines (48 loc) · 1.86 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
52
53
54
55
56
57
58
59
output "s3_bucket_arn" {
description = "ARN of the S3 bucket"
value = local.s3_bucket_arn
}
output "execution_role_arn" {
description = "IAM Role ARN for Amazon MWAA Execution Role"
value = local.execution_role_arn
}
output "arn" {
description = "The ARN of the Amazon MWAA Environment"
value = join("", aws_mwaa_environment.default.*.arn)
}
output "created_at" {
description = "The Created At date of the Amazon MWAA Environment"
value = join("", aws_mwaa_environment.default.*.created_at)
}
output "logging_configuration" {
description = "The Logging Configuration of the Amazon MWAA Environment"
value = try(aws_mwaa_environment.default[0].logging_configuration, [])
}
output "service_role_arn" {
description = "The Service Role ARN of the Amazon MWAA Environment"
value = join("", aws_mwaa_environment.default.*.service_role_arn)
}
output "status" {
description = "The status of the Amazon MWAA Environment"
value = join("", aws_mwaa_environment.default.*.status)
}
output "tags_all" {
description = "A map of tags assigned to the resource, including those inherited from the provider for the Amazon MWAA Environment"
value = try(aws_mwaa_environment.default[0].tags_all, [])
}
output "webserver_url" {
description = "The webserver URL of the Amazon MWAA Environment"
value = join("", aws_mwaa_environment.default.*.webserver_url)
}
output "security_group_id" {
value = join("", compact(module.mwaa_security_group.*.id))
description = "The ID of the created security group"
}
output "security_group_arn" {
value = join("", compact(module.mwaa_security_group.*.arn))
description = "The ARN of the created security group"
}
output "security_group_name" {
value = join("", compact(module.mwaa_security_group.*.name))
description = "The name of the created security group"
}