forked from wandb/terraform-aws-wandb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
58 lines (51 loc) · 1.42 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
output "bucket_name" {
value = local.bucket_name
}
output "bucket_queue_name" {
value = local.bucket_queue_name
}
output "bucket_region" {
value = data.aws_s3_bucket.file_storage.region
}
output "cluster_id" {
value = module.app_eks.cluster_id
}
output "cluster_node_role" {
value = module.app_eks.node_role
}
output "database_connection_string" {
value = module.database.connection_string
}
output "database_username" {
value = module.database.username
}
output "database_password" {
sensitive = true
value = module.database.password
}
output "elasticache_connection_string" {
value = var.create_elasticache ? module.redis.0.connection_string : null
}
output "internal_app_port" {
value = local.internal_app_port
}
output "kms_key_arn" {
value = local.kms_key_arn
description = "The Amazon Resource Name of the KMS key used to encrypt data at rest."
}
output "network_id" {
value = local.network_id
description = "The identity of the VPC in which resources are deployed."
}
output "network_private_subnets" {
value = local.network_private_subnets
description = "The identities of the private subnetworks deployed within the VPC."
}
output "network_public_subnets" {
value = local.network_public_subnets
description = "The identities of the public subnetworks deployed within the VPC."
}
output "url" {
value = local.url
description = "The URL to the W&B application"
}