-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
50 lines (38 loc) · 893 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
output "alb_dns_name" {
value = module.alb.dns_name
}
output "app_url" {
value = "https://${var.subdomain}.${var.domain_name}"
}
output "cloudwatch_log_group_name" {
value = aws_cloudwatch_log_group.logs.name
}
output "database_arn" {
value = module.rds.arn
}
output "database_host" {
value = module.rds.address
}
output "database_password" {
value = local.db_password
sensitive = true
}
output "adminer_url" {
value = one(module.adminer[*].adminer_url)
}
output "ecsInstanceRole_arn" {
value = module.ecsasg.ecsInstanceRole_arn
}
output "ecsServiceRole_arn" {
value = module.ecsasg.ecsServiceRole_arn
}
output "cd_user_arn" {
value = one(aws_iam_user.cd[*].arn)
}
output "cd_user_access_key_id" {
value = one(aws_iam_access_key.cd[*].id)
}
output "cd_user_secret_access_key_id" {
value = one(aws_iam_access_key.cd[*].secret)
sensitive = true
}