-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathoutputs.tf
More file actions
42 lines (33 loc) · 758 Bytes
/
outputs.tf
File metadata and controls
42 lines (33 loc) · 758 Bytes
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
output "database_config" {
value = local.database_config
}
output "feature_flags_config" {
value = local.feature_flags_config
}
output "scheduled_jobs" {
value = local.scheduled_jobs
}
output "monitoring_config" {
value = local.monitoring_config
}
output "network_name" {
value = var.network_name
}
output "domain_config" {
value = local.domain_config
}
output "service_config" {
value = local.service_config
}
output "identity_provider_config" {
value = local.identity_provider_config
}
output "notifications_config" {
value = local.notifications_config
}
output "storage_config" {
value = {
# Include project name in bucket name since buckets need to be globally unique across AWS
bucket_name = local.bucket_name
}
}